13 lines
383 B
Bash
13 lines
383 B
Bash
#!/bin/bash
|
|
echo "--- Starting IYmtg Update ---"
|
|
cd ../IYmtg_Builder_Mac
|
|
xcodebuild -scheme IYmtg_Builder_Mac -configuration Release
|
|
./Build/Products/Release/IYmtg_Builder_Mac
|
|
mv ~/IYmtg_Workspace/cards.json ../IYmtg_App_iOS/cards.json
|
|
|
|
# Generate Description Update
|
|
echo "Generating Model Report..."
|
|
cd ../IYmtg_Automation
|
|
python3 generate_report.py
|
|
|
|
echo "SUCCESS. Deploy App Now." |