mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
13 lines
170 B
Bash
Executable File
13 lines
170 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 --ci
|
|
yarn tgui:prettier
|
|
cd ..
|