Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Allow multiple env args to env stop command #144

Merged
merged 2 commits into from
Oct 19, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! Allow multiple env args to env stop command
  • Loading branch information
cmoog committed Oct 19, 2020
commit 49b57e0656d094691eaf0f6cac30090f0300adb4
1 change: 1 addition & 0 deletions internal/cmd/envs.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ coder envs --user charlie@coder.com ls -o json \
egroup.Go(func() error {
env, err := findEnv(cmd.Context(), client, envName, *user)
if err != nil {
flog.Error("failed to find environment by name \"%s\": %v", env.Name, err)
return xerrors.Errorf("find environment by name: %w", err)
}

Expand Down