Maintenance: Improve packager.io build configuration to work with new buildpack.
This commit is contained in:
parent
1d344d5ec9
commit
dbbd3095d7
3 changed files with 7 additions and 2 deletions
|
@ -5,7 +5,10 @@
|
||||||
|
|
||||||
PATH=$(pwd)/bin:$(pwd)/vendor/bundle/bin:$PATH
|
PATH=$(pwd)/bin:$(pwd)/vendor/bundle/bin:$PATH
|
||||||
|
|
||||||
set -e
|
set -eux
|
||||||
|
|
||||||
# delete asset cache
|
# delete asset cache
|
||||||
rm -r tmp/cache
|
rm -r tmp/cache
|
||||||
|
|
||||||
|
# delete node_modules folder - only required for building
|
||||||
|
rm -rf node_modules
|
|
@ -3,6 +3,8 @@
|
||||||
# packager.io before script
|
# packager.io before script
|
||||||
#
|
#
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
# print environemnt
|
# print environemnt
|
||||||
uname -a
|
uname -a
|
||||||
ruby -v
|
ruby -v
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -ex
|
set -eux
|
||||||
|
|
||||||
rm app/assets/javascripts/app/controllers/layout_ref.coffee
|
rm app/assets/javascripts/app/controllers/layout_ref.coffee
|
||||||
rm -rf app/assets/javascripts/app/views/layout_ref/
|
rm -rf app/assets/javascripts/app/views/layout_ref/
|
||||||
|
|
Loading…
Reference in a new issue