| ... | ... | @@ -17,13 +17,17 @@ X86_64_FREEBSD_JSON_URL="https://ziglang.org/builds/x86_64-freebsd-$VERSION.json |
| 17 | 17 | |
| 18 | 18 | # If any of these fail, it's not really this job failing; rather we have detected |
| 19 | 19 | # that this job will be called again later when other jobs have completed. |
| 20 | | curl --fail -I "$AARCH64_LINUX_JSON_URL" || exit 0 |
| 21 | | curl --fail -I "$X86_64_LINUX_JSON_URL" || exit 0 |
| 22 | | curl --fail -I "$X86_64_WINDOWS_JSON_URL" || exit 0 |
| 23 | | curl --fail -I "$X86_64_MACOS_JSON_URL" || exit 0 |
| 24 | | curl --fail -I "$X86_64_FREEBSD_JSON_URL" || exit 0 |
| 20 | curl --fail -I "$AARCH64_LINUX_JSON_URL" >/dev/null || exit 0 |
| 21 | curl --fail -I "$X86_64_LINUX_JSON_URL" >/dev/null || exit 0 |
| 22 | curl --fail -I "$X86_64_WINDOWS_JSON_URL" >/dev/null || exit 0 |
| 23 | curl --fail -I "$X86_64_MACOS_JSON_URL" >/dev/null || exit 0 |
| 24 | curl --fail -I "$X86_64_FREEBSD_JSON_URL" >/dev/null || exit 0 |
| 25 | |
| 26 | # Without --user, this gave me: |
| 27 | # ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied |
| 28 | pip3 install s3cmd --user |
| 29 | export PATH="$PATH:~/.local/bin" |
| 25 | 30 | |
| 26 | | pip3 install s3cmd |
| 27 | 31 | rm -rf .git |
| 28 | 32 | |
| 29 | 33 | cd "$HOME" |