mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
9 lines
73 B
Text
9 lines
73 B
Text
|
#!/bin/bash
|
||
|
|
||
|
if [[ $1 == "build" ]]; then
|
||
|
bun run $@
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
bun $@
|