Files
Dot-Zsh/Commands/Lang/mod.just
2026-05-31 23:24:18 +01:00

21 lines
322 B
Plaintext

project_root := justfile_directory()
scripts_dir := project_root + "/Scripts"
node:
bash '{{scripts_dir}}/node.sh'
go:
bash '{{scripts_dir}}/go.sh'
rust:
bash '{{scripts_dir}}/rust.sh'
python:
bash '{{scripts_dir}}/python.sh'
r:
bash '{{scripts_dir}}/r.sh'
cpp:
bash '{{scripts_dir}}/cpp.sh'