mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 21:28:37 +01:00
df8cea1443
* docker file and version update * don't go further up yet * Update Dockerfile * Update Dockerfile * unifi dependencies * all features for us
14 lines
181 B
Bash
Executable File
14 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
source ~/.nvm/nvm.sh
|
|
nvm use $NODE_VERSION
|
|
cd tgui
|
|
chmod +x bin/tgui
|
|
bin/tgui --lint
|
|
bin/tgui --test
|
|
yarn tgui:prettier
|
|
cd ..
|