mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
19 lines
479 B
Bash
Executable File
19 lines
479 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# -e = exit when one command returns != 0, -v print each command before executing
|
|
set -ev
|
|
|
|
# change to protected directory
|
|
cd protected
|
|
|
|
# find _output folder and add to zip
|
|
find humhub/ -type d -name "_output" -exec zip -r --exclude="*.gitignore" failure.zip {} +
|
|
|
|
# add logs to failure.zip
|
|
zip -ur failure.zip runtime/logs
|
|
|
|
# upload file
|
|
curl --upload-file ./failure.zip https://transfer.sh/humhub-travis-${TRAVIS_JOB_NUMBER}.zip
|
|
|
|
# delete zip
|
|
rm failure.zip |