diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-06 16:00:48 +0200 |
|---|---|---|
| committer | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-06 16:01:43 +0200 |
| commit | a9e05cb427a7ee057dcc501d6b8f43d9283bc5a1 (patch) | |
| tree | cad99a2a7895276c4e6954efa599505efe5eb6fa | |
| parent | 6e840ee81b52b3b1dbbf7a8dcfd1f9a185f87c22 (diff) | |
| download | Project-Tick-a9e05cb427a7ee057dcc501d6b8f43d9283bc5a1.tar.gz Project-Tick-a9e05cb427a7ee057dcc501d6b8f43d9283bc5a1.zip | |
chore: remove testNeo script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
| -rw-r--r-- | testNeo.sh | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/testNeo.sh b/testNeo.sh deleted file mode 100644 index 92f7ac04fd..0000000000 --- a/testNeo.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -BASEDIR=$(dirname "$0") -cd "${BASEDIR}" || exit 1 -BASEDIR=$(pwd) - -set -x - -source config.sh -if [ -f config/config_local.sh ]; then - source config/config_local.sh -fi - -MODE=${MODE:-develop} - -BRANCH_var="BRANCH_$MODE" -BRANCH="${!BRANCH_var}" - -function fail_in { - upstream_git reset --hard HEAD - exit 1 -} - -function fail_out { - launcher_git reset --hard HEAD - exit 1 -} - -function upstream_git { - git -C "${BASEDIR}/${UPSTREAM_DIR}" "$@" -} - -function launcher_git { - git -C "${BASEDIR}/${LAUNCHER_DIR}" "$@" -} - -# make sure we *could* push to our repo - -currentDate=$(date -I) - -upstream_git reset --hard HEAD || exit 1 -upstream_git checkout "${BRANCH}" || exit 1 - - -python updateNeoForge.py || fail_in - -launcher_git reset --hard HEAD || exit 1 -launcher_git checkout "${BRANCH}" || exit 1 - - -python generateNeoForge.py || fail_out -python index.py || fail_out
\ No newline at end of file |
