Skip to content

Commit e9ce757

Browse files
committed
build: Do not let agent install fail the build
1 parent 7e05ca0 commit e9ce757

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ci/build/build-code-server.sh

+2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ main() {
2020

2121
if ! [ -f ./lib/coder-cloud-agent ]; then
2222
OS="$(uname | tr '[:upper:]' '[:lower:]')"
23+
set +e
2324
curl -fsSL "https://storage.googleapis.com/coder-cloud-releases/agent/latest/$OS/cloud-agent" -o ./lib/coder-cloud-agent
2425
chmod +x ./lib/coder-cloud-agent
26+
set -e
2527
fi
2628

2729
parcel build \

0 commit comments

Comments
 (0)