Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Regression ciglue.sh: avoid git fatal error when cloning TIAB #1104

Merged
merged 1 commit into from
Oct 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python-regression/ciglue.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ ERROR=0
K8S_NAMESPACE=$(kubectl config get-contexts $(kubectl config current-context) | tail -n+2 | awk '{print $5}')
IMAGE=$1

git clone --depth 1 https://github.com/iotaledger/tiab tiab
if [ ! -d tiab ]; then
git clone --depth 1 https://github.com/iotaledger/tiab tiab
fi

virtualenv -p python2 venv
source venv/bin/activate
Expand Down