fore.st/postinstall.sh
2022-07-11 00:50:51 +00:00

13 lines
178 B
Bash
Executable file

#!/bin/sh
set -e
if ! command -v npm >/dev/null; then
echo "Could not find npm in \$PATH"
exit 1
fi
echo "Building from src/ to lib/"
npm run build-server
echo "Done"