mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 12:13:06 +00:00
13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source _build_dependencies.sh
|
|
|
|
source ~/.nvm/nvm.sh
|
|
nvm use $NODE_VERSION
|
|
cd tgui
|
|
chmod +x bin/tgui
|
|
bin/tgui --lint
|
|
bin/tgui --test
|
|
cd ..
|