forked from M-Labs/libfringe
7 lines
132 B
Bash
Executable File
7 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = false ] && [ "$TRAVIS_BRANCH" = master ]; then
|
|
pip install --user ghp-import
|
|
fi
|