mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-09 17:08:06 +01:00
8 lines
73 B
Bash
Executable file
8 lines
73 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $1 == "build" ]]; then
|
|
bun run $@
|
|
exit
|
|
fi
|
|
|
|
bun $@
|