Skip to content

Commit

Permalink
Build: do not abort in case of composer error
Browse files Browse the repository at this point in the history
If a composer error occurs, continue with the next ref's build instead
of aborting the process with exit code 1.
  • Loading branch information
dregad committed Apr 2, 2017
1 parent 03d2b84 commit aacc337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildrelease-repo.py
Expand Up @@ -162,7 +162,7 @@ def main():
if path.isfile('composer.json'):
print "Installing Composer packages"
if subprocess.call('composer install', shell=True):
sys.exit(1)
continue
print

# Update and reset submodules
Expand Down

0 comments on commit aacc337

Please sign in to comment.