From 5f1bbdf037ebc51037fe5f2329bed44a0e0ad94e Mon Sep 17 00:00:00 2001 From: Neil Sarkar Date: Sun, 21 Feb 2021 12:01:32 -0500 Subject: [PATCH] Move bash scripts to their own folder --- bash/pull.bash | 26 +++++++++++++++++++++++ pull.bash.meta => bash/pull.bash.meta | 0 push.bash => bash/push.bash | 0 push.bash.meta => bash/push.bash.meta | 0 update.bash => bash/update.bash | 2 +- update.bash.meta => bash/update.bash.meta | 0 pull.bash | 9 -------- 7 files changed, 27 insertions(+), 10 deletions(-) create mode 100755 bash/pull.bash rename pull.bash.meta => bash/pull.bash.meta (100%) rename push.bash => bash/push.bash (100%) rename push.bash.meta => bash/push.bash.meta (100%) rename update.bash => bash/update.bash (90%) rename update.bash.meta => bash/update.bash.meta (100%) delete mode 100755 pull.bash diff --git a/bash/pull.bash b/bash/pull.bash new file mode 100755 index 0000000..db27905 --- /dev/null +++ b/bash/pull.bash @@ -0,0 +1,26 @@ +echo "Choose a project:" +echo "[1] king_of_the_hat" +echo "[2] Package Party" +printf "=> " +read; + +case $REPLY in + 1) + projectName="king_of_the_hat" + ;; + 2) + projectName="Package Party" + ;; + *) + echo "You entered ${REPLY} but we looking for a number on the list" + exit + ;; +esac + +cp -r "$HOME/work/${projectName}/Packages/violetui/" . +tee Runtime/Navigation/ScreenId.cs &> /dev/null < /dev/null < /dev/null <