File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ curl -fsSL ${ACCESS_URL}bin/coder-linux-amd64 -o $BINARY_LOCATION
28
28
chmod +x $BINARY_LOCATION
29
29
export CODER_AUTH="${AUTH_TYPE}"
30
30
export CODER_URL="${ACCESS_URL}"
31
- exec $BINARY_LOCATION workspaces agent
31
+ exec $BINARY_LOCATION agent
32
32
` ,
33
33
},
34
34
"darwin" : {
@@ -40,7 +40,7 @@ curl -fsSL ${ACCESS_URL}bin/coder-darwin-amd64 -o $BINARY_LOCATION
40
40
chmod +x $BINARY_LOCATION
41
41
export CODER_AUTH="${AUTH_TYPE}"
42
42
export CODER_URL="${ACCESS_URL}"
43
- exec $BINARY_LOCATION workspaces agent
43
+ exec $BINARY_LOCATION agent
44
44
` ,
45
45
},
46
46
}
Original file line number Diff line number Diff line change @@ -51,6 +51,6 @@ func TestAgentScript(t *testing.T) {
51
51
require .NoError (t , err )
52
52
// Because we use the "echo" binary, we should expect the arguments provided
53
53
// as the response to executing our script.
54
- require .Equal (t , "workspaces agent" , strings .TrimSpace (string (output )))
54
+ require .Equal (t , "agent" , strings .TrimSpace (string (output )))
55
55
})
56
56
}
You can’t perform that action at this time.
0 commit comments