Skip to content

Commit

Permalink
Made sure to actually check out repos if they were missing now, even …
Browse files Browse the repository at this point in the history
…without the kill argument
  • Loading branch information
adamgrimm99 committed Sep 15, 2018
1 parent 19fe698 commit dec47ff
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/smoke_test.sh
Expand Up @@ -2,10 +2,16 @@
if [[ "$1" == "kill" ]]; then
# Clean out the old
rm -fR killerbeez killerbeez-mutators killerbeez-utils build
fi

# Check out the new
# Check out the new (if needed)
if [[ ! -d killerbeez-utils ]]; then
git clone https://github.com/grimm-co/killerbeez-utils
fi
if [[ ! -d killerbeez-mutators ]]; then
git clone https://github.com/grimm-co/killerbeez-mutators
fi
if [[ ! -d killerbeez ]]; then
git clone https://github.com/grimm-co/killerbeez
fi

Expand Down

0 comments on commit dec47ff

Please sign in to comment.