Move Xcode project to a separate tree parallel to src

This commit is contained in:
2018-02-19 02:09:31 -05:00
parent 827e1b2a6b
commit 8759aad90a
24 changed files with 92 additions and 75 deletions

9
pkg/pack-scenario.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
# Usage: pack-scenario.sh scenario-folder scenario-filename
rm -f "$2"
cd "$1/.."
mv "$1" scenario
tar -czf "$2" scenario
mv scenario "$1"