2016-12-06 11:11:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# packager.io after script
|
|
|
|
#
|
|
|
|
|
2016-12-06 13:52:49 +00:00
|
|
|
PATH=$(pwd)/bin:$(pwd)/vendor/bundle/bin:$PATH
|
2016-12-06 11:11:04 +00:00
|
|
|
|
2022-03-16 09:26:53 +00:00
|
|
|
set -eux
|
2016-12-06 11:11:04 +00:00
|
|
|
|
2017-01-09 22:45:09 +00:00
|
|
|
# delete asset cache
|
2017-09-17 11:13:57 +00:00
|
|
|
rm -r tmp/cache
|
2022-03-16 09:26:53 +00:00
|
|
|
|
|
|
|
# delete node_modules folder - only required for building
|
|
|
|
rm -rf node_modules
|