- switched to !/bin/bash because of issues with echo -e on Mac OS - improved git-sync-master.sh to also rebase on current feature branch - improved logs in git-publish.sh - changed build scripts to execute from /bin
16 lines
245 B
Bash
Executable File
16 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SUCCESS="\033[32mSuccess:\033[00m"
|
|
|
|
# Enter masterproject directory
|
|
MY_PATH=`dirname "$0"`
|
|
cd $MY_PATH/..
|
|
|
|
# Remove folders and contents
|
|
rm -rf build
|
|
rm -rf lib
|
|
rm -rf bin/Debug
|
|
rm -rf bin/Release
|
|
|
|
echo -e $SUCCESS "clean complete"
|