Skip to content

Commit e0de0c8

Browse files
author
bytekeeper
committed
Don't fail if the cache file doesn't exist.
1 parent f86f766 commit e0de0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ before_script:
1515
- pushd sc-docker
1616
- python3 setup.py bdist_wheel
1717
- pip3 install dist/scbw*.whl
18-
- '[ -f /tmp/sc-docker/starcraft.zip ] && (cp /tmp/sc-docker/starcraft.zip scbw/local_docker && echo "Using cached starcraft.zip")'
18+
- '[ ! -f /tmp/sc-docker/starcraft.zip ] || (cp /tmp/sc-docker/starcraft.zip scbw/local_docker && echo "Using cached starcraft.zip")'
1919
- cd docker
2020
- ./build_images.sh
2121
- popd

0 commit comments

Comments
 (0)