Skip to content

Commit 881dd25

Browse files
committed
build: Do not let agent install fail the build
We don't have an agent for FreeBSD right now.
1 parent 7e05ca0 commit 881dd25

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ci/build/build-code-server.sh

Lines changed: 2 additions & 0 deletions
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)