21 lines
322 B
Plaintext
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'
|