We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0dc2a6 commit b54faf3Copy full SHA for b54faf3
1 file changed
bin/compile
@@ -105,19 +105,6 @@ fi
105
mkdir -p $CACHE_DIR
106
107
108
-set +e
109
-
110
-# Create set-aside `.heroku` folder.
111
-mkdir .heroku
112
-HEROKU_DIR_STATUS=$?
113
114
-# This is a new app, disable injection.
115
-[ $HEROKU_DIR_STATUS -nq 0 ] && {
116
- touch .heroku/injection_disabled
117
-}
118
-set -e
119
120
121
# Nice defaults.
122
LEGACY_VIRTUALENV=false
123
VIRTUALENV_LOC=$MODERN_VIRTUALENV_LOC
@@ -145,6 +132,17 @@ for dir in $CACHED_DIRS; do
145
132
cp -R $CACHE_DIR/$dir . &> /dev/null || true
146
133
done
147
134
135
+set +e
136
+# Create set-aside `.heroku` folder.
137
+mkdir .heroku
138
+HEROKU_DIR_STATUS=$?
139
+
140
+# This is a new app, disable injection.
141
+[ $HEROKU_DIR_STATUS -eq 0 ] && {
142
+ touch .heroku/injection_disabled
143
+}
144
+set -e
148
149
# ### Virtualenv Setup
150
#
0 commit comments