diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 15:29:16 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-07-11 15:29:16 -0400 |
| commit | 34a73cd584faac7f0b594b9c186d59711805aabf (patch) | |
| tree | a152a9fe8d66008902a20d338985de08c2a85c9b /build.sh | |
| parent | 41c6c6169d991aa6d44185f58ff99a0a7dcc95f3 (diff) | |
fixup scripts
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 $? |