Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 65ce399

Browse files
committedDec 18, 2020
build: Do not let agent install fail the build
We don't have an agent for FreeBSD right now.
1 parent 386af14 commit 65ce399

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)
Please sign in to comment.