balena-supervisor/postinstall.sh

13 lines
379 B
Bash
Raw Normal View History

2014-08-01 15:20:58 +00:00
if [ $NODE_ENV == 'production' ]; then
node ./node_modules/coffee-script/bin/coffee -c ./src
# We don't need coffee-script at runtime
2014-08-01 15:20:58 +00:00
npm uninstall coffee-script
# Empty the apt and npm caches of the packages we installed
npm cache clean
apt-get clean
# Remove deploy key
rm -rf /root/.ssh/* deploy_key
# Remove unnecessary source files
rm -rf Makefile src/*.coffee
2014-08-01 15:20:58 +00:00
fi