Files
colorshell/scripts/start.sh
T
2025-08-06 16:38:39 -03:00

13 lines
141 B
Bash

file="${1:-./build/colorshell}"
function start() {
exec "$file"
}
if [[ -f "$file" ]]; then
start
else
pnpm build
start
fi