diff options
author | Will Holland <william.holland@codethink.co.uk> | 2015-09-10 16:43:50 +0100 |
---|---|---|
committer | Will Holland <william.holland@codethink.co.uk> | 2015-09-10 16:43:50 +0100 |
commit | 728476d0454dc748155d172fbea73cd25f4f3f0b (patch) | |
tree | 6fbfd4e0ed781d45e27e8b03c32d5b24dd9f3ac3 | |
parent | 47346a9074b25a0973173089410cafac59736587 (diff) | |
download | buildslave-scripts-728476d0454dc748155d172fbea73cd25f4f3f0b.tar.gz |
Fix copypasted code
-rw-r--r-- | get_definitions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/get_definitions.sh b/get_definitions.sh index 282dcaf..06e6736 100644 --- a/get_definitions.sh +++ b/get_definitions.sh @@ -1,6 +1,6 @@ #!/bin/sh set -e -if [ ! -d "$DIRECTORY" ]; then +if [ ! -d definitions ]; then git clone ssh://git@cu010-trove.codethink.com/baserock/baserock/definitions.git fi cd definitions |