summaryrefslogtreecommitdiff
path: root/worker/scripts/fetch_code
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2025-05-15 23:39:29 -0700
committerElizabeth Alexander Hunt <me@liz.coffee>2025-05-15 23:40:00 -0700
commit1ab20482ab37d7962c8e69701163270e687df3ca (patch)
treef0aaac54f8c23269fdeb2bca6f22e296a9e0559f /worker/scripts/fetch_code
parent3a3fb9c8ab0c798a278f76d40de216fa96f6e2c4 (diff)
downloadci-1ab20482ab37d7962c8e69701163270e687df3ca.tar.gz
ci-1ab20482ab37d7962c8e69701163270e687df3ca.zip
more snapshot
Diffstat (limited to 'worker/scripts/fetch_code')
-rwxr-xr-xworker/scripts/fetch_code4
1 files changed, 2 insertions, 2 deletions
diff --git a/worker/scripts/fetch_code b/worker/scripts/fetch_code
index 83a5612..4dfb7ab 100755
--- a/worker/scripts/fetch_code
+++ b/worker/scripts/fetch_code
@@ -5,7 +5,7 @@ export LOG_PREFIX="[fetch_code $remote @ $checkout -> $path]"
log "getting the codez~ time to fetch!"
git clone "$remote" "$path"
if [ ! $? -eq 0 ]; then
- log "oh nyo! couldn't clone the repo"
+ log "D: oh nyo! couldn't clone the repo"
exit 1
fi
@@ -13,7 +13,7 @@ cd "$path"
log "switching to $checkout like a good kitty~"
git reset --hard "$checkout"
if [ ! $? -eq 0 ]; then
- log "ouchie! can't reset to $checkout"
+ log "D: can't reset to $checkout"
cd -
exit 1
fi