summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorKai Gunger <kgunger12@gmail.com>2026-07-11 15:29:16 -0400
committerKai Gunger <kgunger12@gmail.com>2026-07-11 15:29:16 -0400
commit34a73cd584faac7f0b594b9c186d59711805aabf (patch)
treea152a9fe8d66008902a20d338985de08c2a85c9b /build.sh
parent41c6c6169d991aa6d44185f58ff99a0a7dcc95f3 (diff)
fixup scripts
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index d66742f..f4f551f 100755
--- a/build.sh
+++ b/build.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-BUILD_DIR=./out
+BUILD_DIR=./build
ARTIFACT_DIR=$BUILD_DIR/artifacts
mkdir -p $BUILD_DIR
@@ -8,7 +8,8 @@ mkdir -p $ARTIFACT_DIR
filename=$1
filename="${filename%.*}"
-./ctc $filename.tnsl $ARTIFACT_DIR/$filename.asm
+./stuck/tnslc $filename.tnsl
+mv out.asm $ARTIFACT_DIR/$filename.asm
if [ $? -ne 0 ]; then
exit $?