File tree Expand file tree Collapse file tree
builder/rootfs/etc/confd/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -140,11 +140,11 @@ if [ -f Procfile ]; then
140140elif [ -f $TMP_DIR /slug.tgz ]; then
141141 # Sometimes, the buildpack will generate a Procfile instead of populating /bin/release
142142 # /bin/release was unofficially deprecated for declaring default process types
143- if tar -tf $TMP_DIR /slug.tgz ./Procfile & > /dev/null;
143+ if tar -tzf $TMP_DIR /slug.tgz ./Procfile & > /dev/null;
144144 then
145- PROCFILE=" $( tar --to-stdout -xf $TMP_DIR /slug.tgz ./Procfile | yaml2json-procfile) "
145+ PROCFILE=" $( tar --to-stdout -xzf $TMP_DIR /slug.tgz ./Procfile | yaml2json-procfile) "
146146 else
147- PROCFILE=$( tar --to-stdout -xf $TMP_DIR /slug.tgz ./.release | extract-types)
147+ PROCFILE=$( tar --to-stdout -xzf $TMP_DIR /slug.tgz ./.release | extract-types)
148148 fi
149149else
150150 PROCFILE=" {}"
You can’t perform that action at this time.
0 commit comments