mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
c5c361be0c
Fix bashism in shell scripts, also fixes #2816 This makes the scripts fully POSIX-compatible. Used shellcheck to check.
12 lines
272 B
Bash
Executable file
12 lines
272 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
NO_COVERAGE_TOXENVS=(pep8)
|
|
if ! [[ "${NO_COVERAGE_TOXENVS[*]}" =~ ${TOXENV} ]]; then
|
|
source ~/.venv/bin/activate
|
|
# on osx, tests run as root, need access to .coverage
|
|
sudo chmod 666 .coverage
|
|
codecov -e TRAVIS_OS_NAME TOXENV
|
|
fi
|