File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -87,4 +87,6 @@ fastlane/test_output
8787# After new code Injection tools there's a generated folder /iOSInjectionProject
8888# https://github.com/johnno1962/injectionforxcode
8989
90- iOSInjectionProject /
90+ iOSInjectionProject /
91+
92+ SCTestSever /sc-testserver
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ if test " $# " -ne 1; then
4+ echo " Please provide start or stop as argument"
5+ exit 1
6+ fi
7+
8+ FOLDER=" sc-testserver"
9+ URL=" https://github.com/sacOO7/sc-testserver"
10+
11+ if [ ! -d " $FOLDER " ] ; then
12+ git clone $URL $FOLDER
13+ cd " $FOLDER "
14+ else
15+ cd " $FOLDER "
16+ git pull $URL
17+ fi
18+
19+ if [ $1 = " start" ]; then
20+ ./runserver
21+ fi
22+ if [ $1 = " stop" ]; then
23+ ./stopserver
24+ fi
You can’t perform that action at this time.
0 commit comments