Skip to content

Commit

Permalink
fixed del command
Browse files Browse the repository at this point in the history
  • Loading branch information
artemsalimov committed Sep 15, 2020
1 parent 3ac0fb9 commit d90b2b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified assets/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion cmd/jj/jb_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func DelEnv(name EName) error {
for i, e := range config.Envs {
if e.Name == name {
config.Envs = append(config.Envs[:i], config.Envs[i+1:]...)
SetEnv(e)
SetConf()
return nil
}
}
Expand Down

0 comments on commit d90b2b9

Please sign in to comment.