diff options
author | Melody Horn <melody@boringcactus.com> | 2019-02-27 01:07:01 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2019-02-27 01:07:01 -0700 |
commit | 14eff99bc22d5266784e7201e7680277c0fcf2f9 (patch) | |
tree | 2023baae8b8be30f109c1779cba99b9249ce0e13 | |
parent | 72021924f147382ba01e8526bb1c8a3ebdfd8344 (diff) | |
download | vidslice-14eff99bc22d5266784e7201e7680277c0fcf2f9.tar.gz vidslice-14eff99bc22d5266784e7201e7680277c0fcf2f9.zip |
improve zip creation
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index dbfeada..767a179 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,8 @@ install: before_deploy: - ${PYTHON} setup.py build - pushd build - - zip vidslice-${TRAVIS_OS_NAME}.zip -r $(ls)/ || powershell Compress-Archive -Path $(ls) -DestinationPath vidslice-${TRAVIS_OS_NAME}.zip + - pushd . + - zip vidslice-${TRAVIS_OS_NAME}.zip -r * || powershell Compress-Archive -Path . -DestinationPath vidslice-${TRAVIS_OS_NAME}.zip - ls - popd deploy: |