-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move bash scripts to their own folder
- Loading branch information
1 parent
bbba305
commit 5f1bbdf
Showing
7 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <<EOF | ||
// Names are automatically added through ScreenIdGenerator.cs, deletions are done manually :) | ||
public enum ScreenId { | ||
None = 0, | ||
} | ||
EOF |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.