Skip to content

Commit dbbfe4b

Browse files
committed
Fixed build fails
1 parent 2797e76 commit dbbfe4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/set-env-vars.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func (l *SetEnvVarCmd) getWorkspaceId(client Client) (workspaceId int, err error
7171
}
7272
for _, w := range allWorkspaces {
7373
if int(w.id) == *l.Opts.WorkspaceId
74-
workspaceId := w.id
74+
workspaceId = int(w.id)
7575
return
7676
}
7777
return

0 commit comments

Comments
 (0)