feat: is able to call a script from a project

This commit is contained in:
2025-02-27 22:02:51 +01:00
parent 9b6996c261
commit ef8deadfd8
8 changed files with 237 additions and 76 deletions

View File

@@ -26,11 +26,8 @@ project {
output "output/"
}
scripts type=shell {
path "scripts/"
actions {
build
}
scripts {
hello type=shell {}
}
}

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
set -e
echo "hello world"