deprived-main-website/build.sh
2025-02-25 16:04:15 +01:00

17 lines
280 B
Bash
Executable file

#!/usr/bin/env bash
# motherfucking hate npm. Spent 3 hours debugging that when
# NODE_ENV is set to production, npm won't install anything
unset NODE_ENV
git pull
git reset --hard WeGoingBasic
npm ci
echo "Ready to build, building..."
npm run build
echo "Done rebuilding!"