From 6f22fe8bc7f3a793d5767dfbc52b430a1581daea Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Wed, 12 Apr 2023 12:18:38 -0400 Subject: [PATCH] rename st to spacetime --- BUILDING.md | 4 ++-- st => spacetime | 4 ++-- {spacetime => spacetime_py}/ninja_syntax.py | 0 {spacetime => spacetime_py}/spacetime.py | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename st => spacetime (97%) rename {spacetime => spacetime_py}/ninja_syntax.py (100%) rename {spacetime => spacetime_py}/spacetime.py (100%) diff --git a/BUILDING.md b/BUILDING.md index 546b3866d641195b36d1037ab8b8847fbe648706..806797167ba7b2bfc1601dee1bcde1fbf586d22d 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -18,8 +18,8 @@ If you get a `sheep: command not found` error, or the same with wasm-pack, add ` ## Running build commands -Build commands are ran with the `st` shell script. Run `./st ` to run a build. -`st` can be run from any directory - you could run `../../st run-server` from `server/src/`, and it would still properly build and run the server. +Build commands are ran with the `spacetime` shell script. Run `./spacetime ` to run a build. +`spacetime` can be run from any directory - you could run `../../spacetime run-server` from `server/src/`, and it would still properly build and run the server. ## Available build commands diff --git a/st b/spacetime similarity index 97% rename from st rename to spacetime index c3fcad598b447264c2748800126e5c8b0f4af768..f3e00abf7e6adeb4894d9ac2e7fa65abfa7accda 100755 --- a/st +++ b/spacetime @@ -7,8 +7,8 @@ SCRIPT_DIR=$(dirname "$SCRIPT_PATH") exec_spacetime() { # args: target, environment, build root - echo "[*] Running configure command: 'python3 $SCRIPT_DIR/spacetime/spacetime.py $1 $2 $SCRIPT_DIR'" - python3 "$SCRIPT_DIR/spacetime/spacetime.py" "$1" "$2" "$SCRIPT_DIR" + echo "[*] Running configure command: 'python3 $SCRIPT_DIR/spacetime_py/spacetime.py $1 $2 $SCRIPT_DIR'" + python3 "$SCRIPT_DIR/spacetime_py/spacetime.py" "$1" "$2" "$SCRIPT_DIR" } exec_ninja() { diff --git a/spacetime/ninja_syntax.py b/spacetime_py/ninja_syntax.py similarity index 100% rename from spacetime/ninja_syntax.py rename to spacetime_py/ninja_syntax.py diff --git a/spacetime/spacetime.py b/spacetime_py/spacetime.py similarity index 100% rename from spacetime/spacetime.py rename to spacetime_py/spacetime.py