Skip to content
Snippets Groups Projects
Commit 04ad4a4f authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Make sure git lfs is installed correctly

parent 1655f8b8
Branches
No related tags found
No related merge requests found
...@@ -7,6 +7,9 @@ function initial_setup() { ...@@ -7,6 +7,9 @@ function initial_setup() {
read cont read cont
if [ "$cont" == "y" ] || [ "$cont" == "Y" ] || [ "$cont" == "" ] if [ "$cont" == "y" ] || [ "$cont" == "Y" ] || [ "$cont" == "" ]
then then
git lfs install
git lfs track '*.uasset'
current_branch=$(git rev-parse --abbrev-ref HEAD) current_branch=$(git rev-parse --abbrev-ref HEAD)
branches_to_delete=$(git for-each-ref --format='%(refname:short)' refs/heads/) branches_to_delete=$(git for-each-ref --format='%(refname:short)' refs/heads/)
...@@ -24,6 +27,9 @@ function initial_setup() { ...@@ -24,6 +27,9 @@ function initial_setup() {
git branch -d "$current_branch" git branch -d "$current_branch"
fi fi
echo "Press [enter] to select plugins."
read x
manage_plugins "initial_setup"
git add . git add .
git commit -m "Initial commit" git commit -m "Initial commit"
...@@ -43,9 +49,6 @@ function initial_setup() { ...@@ -43,9 +49,6 @@ function initial_setup() {
git checkout develop git checkout develop
fi fi
echo "Done!" echo "Done!"
echo "Press [enter] to select plugins."
read x
manage_plugins "initial_setup"
else else
echo "Skipping setup." echo "Skipping setup."
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment