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