Skip to content

Commit 3193f53

Browse files
authored
Merge pull request #31 from antham/fix-typo
Fix typo in error message
2 parents 162d5a8 + 31d3593 commit 3193f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/workspace/workspace.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func (s WorkspaceManager) CreateEnv(name string, env string) error {
180180
return err
181181
}
182182
if s.hasEnv(name, env) {
183-
return fmt.Errorf(`env "%s" already exists`, name)
183+
return fmt.Errorf(`env "%s" already exists`, env)
184184
}
185185
return s.createFile(s.resolveEnvFile(name, env))
186186
}

0 commit comments

Comments
 (0)