diff options
Diffstat (limited to 'worker/scripts/fetch_code')
-rwxr-xr-x | worker/scripts/fetch_code | 4 |
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 |