diff options
| author | Mel <einebeere@gmail.com> | 2022-07-06 01:52:04 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2022-07-06 14:05:28 +0200 |
| commit | 7ab4e6290d7131e4a401d36d8480b3c2fec9ae41 (patch) | |
| tree | 380351f1dd080d4cfe2e6ecc9c5ce25a7cd20ed5 /Taskfile.yml | |
| parent | 5d00068f228322a95895e7f92dd48e6cbb206832 (diff) | |
| download | jinx-7ab4e6290d7131e4a401d36d8480b3c2fec9ae41.tar.zst jinx-7ab4e6290d7131e4a401d36d8480b3c2fec9ae41.zip | |
Add lang binary and decompiler to VM
Diffstat (limited to 'Taskfile.yml')
| -rw-r--r-- | Taskfile.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Taskfile.yml b/Taskfile.yml index 86f6a8d..56e26f3 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -8,6 +8,7 @@ tasks: cmds: - go build -o build/bot jinx/cmd/bot - go build -o build/vm jinx/cmd/vm + - go build -o build/lang jinx/cmd/lang run: desc: "Runs Jinx bot binary." @@ -21,6 +22,12 @@ tasks: cmds: - build/vm {{.CLI_ARGS}} + run-lang: + desc: "Runs Lang compiler and VM." + deps: [build] + cmds: + - build/lang {{.CLI_ARGS}} + test: desc: "Tests all packages." cmds: |
