We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent148e7cd commit104a3c6Copy full SHA for 104a3c6
provisionersdk/agent.go
@@ -23,7 +23,7 @@ Start-Process -FilePath $env:TEMP\sshd.exe -ArgumentList "agent" -PassThru
23
"amd64":`
24
#!/usr/bin/env sh
25
set -eu pipefail
26
-export BINARY_LOCATION=$(mktemp -d)/coder
+export BINARY_LOCATION=$(mktemp -d -t tmp.coderXXXXX)/coder
27
curl -fsSL ${ACCESS_URL}bin/coder-linux-amd64 -o $BINARY_LOCATION
28
chmod +x $BINARY_LOCATION
29
export CODER_AUTH="${AUTH_TYPE}"
@@ -35,7 +35,7 @@ exec $BINARY_LOCATION agent
35
36
37
38
39
curl -fsSL ${ACCESS_URL}bin/coder-darwin-amd64 -o $BINARY_LOCATION
40
41