Skip to content

Commit 40ed2f1

Browse files
committed
[cicd] Fix testscripts
1 parent 41daddd commit 40ed2f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testscripts/testrunner/testrunner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func Main(m *testing.M) {
1919
commands := map[string]func(){
2020
"devbox": func() {
2121
// Call the devbox CLI directly:
22-
boxcli.Execute(context.Background(), os.Args[1:])
22+
os.Exit(boxcli.Execute(context.Background(), os.Args[1:]))
2323
},
2424
"print": func() { // Not 'echo' because we don't expand variables
2525
fmt.Println(strings.Join(os.Args[1:], " "))

0 commit comments

Comments
 (0)