diff options
author | Will Holland <william.holland@codethink.co.uk> | 2015-09-14 12:34:04 +0100 |
---|---|---|
committer | Will Holland <william.holland@codethink.co.uk> | 2015-09-14 12:34:04 +0100 |
commit | a54e29ca2334488f48cacf77fbb6e58510b78165 (patch) | |
tree | 10edb731e7286f826183f1628fc3d94bcb89a7fa /triggers | |
parent | 7801ffc22e20803ad3a070977e8379b15564d2f0 (diff) | |
download | buildslave-scripts-a54e29ca2334488f48cacf77fbb6e58510b78165.tar.gz |
Fix not being allowed to make dir in /archive
Diffstat (limited to 'triggers')
-rw-r--r-- | triggers/testing_trigger.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/triggers/testing_trigger.sh b/triggers/testing_trigger.sh index 4fe82b8..db69d7d 100644 --- a/triggers/testing_trigger.sh +++ b/triggers/testing_trigger.sh @@ -10,7 +10,7 @@ source /archive/tlsa/os.setup ### Now you can run the tester: cd /archive -mkdir -p testing +sudo mkdir -p testing cd /archive/testing if [ -d ciat-tester ]; then rm -rf ciat-tester |