Skip to content

Commit

Permalink
hotfix: fix fer update command
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenqianz committed Apr 14, 2020
1 parent 052303d commit a0b1ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var updateCmd = &cobra.Command{
}

func updateVersion(cmd *cobra.Command, args []string) {
updateCommand := exec.Command("go", "get", "-u", "github.com/kumparan/fer")
updateCommand := exec.Command("go", "get", "github.com/kumparan/fer@latest")
PrintInfo("Updating fer...")
err := updateCommand.Run()
if err != nil {
Expand Down

0 comments on commit a0b1ba8

Please sign in to comment.