update.sh (382B)
1 #!/usr/bin/env bash 2 3 # Save for later 4 OWD=$(realpath $(dirname $0)); 5 6 echo "Updating .gitignore" 7 curl -s https://www.gitignore.io/api/osx,linux,windows,node > .gitignore 8 echo ".idea/" >> .gitignore 9 echo ".gtm/" >> .gitignore 10 echo "/data/" >> .gitignore 11 12 #echo "Updating modules" 13 #git submodule foreach --recursive git clean -xfd &>/dev/null 14 #git submodule update --init --recursive