You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# check if the composer binary is executable by PHP
311
311
if file --brief --dereference "$composer_bin"| grep -e "shell" -e "bash"> /dev/null ;then# newer versions of file return "data" for .phar
312
312
# run it directly; it's probably a bash script or similar (homebrew-php does this)
313
+
# disable interactive mode just in case our environment doesn't have that set (or 'composer config vendor-dir' will hang with a prompt if there is no composer.json in the cwd)
313
314
# re-set COMPOSER_AUTH to ensure a malformed `heroku config:set` will not cause immediate outage
# check if the composer binary is executable by PHP
309
309
if file --brief --dereference "$composer_bin"| grep -e "shell" -e "bash"> /dev/null ;then# newer versions of file return "data" for .phar
310
310
# run it directly; it's probably a bash script or similar (homebrew-php does this)
311
+
# disable interactive mode just in case our environment doesn't have that set (or 'composer config vendor-dir' will hang with a prompt if there is no composer.json in the cwd)
311
312
# re-set COMPOSER_AUTH to ensure a malformed `heroku config:set` will not cause immediate outage
Copy file name to clipboardExpand all lines: test/spec/platform_spec.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@
179
179
bp_root=[".."].cycle("#{manifest_fixtures_subdir}/#{testcase}".count("/")+1).to_a.join("/")# right "../.." sequence to get us back to the root of the buildpack
0 commit comments