Skip to content

Commit

Permalink
Travis CI: Use check_call instead of call in pre_ci script as well
Browse files Browse the repository at this point in the history
  • Loading branch information
skalarproduktraum committed Oct 19, 2020
1 parent 30187ab commit 425c326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/pre_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#subprocess.call(['curl', '-fsLO', 'https://raw.githubusercontent.com/scijava/scijava-scripts/master/travis-build.sh'])
build_var1 = os.environ['encrypted_eb7aa63bf7ac_key']
build_var2 = os.environ['encrypted_eb7aa63bf7ac_iv']
subprocess.call(['bash', 'travis-build.sh', build_var1, build_var2])
subprocess.check_call(['bash', 'travis-build.sh', build_var1, build_var2])

# Setup conda environment
# def build_conda():
Expand Down

0 comments on commit 425c326

Please sign in to comment.