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