From abcad453697c2107bb9ff0eb0c9ea7ccecd855a7 Mon Sep 17 00:00:00 2001 From: AllanCapistrano Date: Thu, 27 Jul 2023 09:44:59 -0300 Subject: [PATCH] chore: change to script in the main branch --- cmd/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/update.go b/cmd/update.go index 3296ba1..209b23a 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -24,7 +24,7 @@ var updateCmd = &cobra.Command{ GBC_VERSION, ) - commandString := `bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/AllanCapistrano/gbc/feat/updater/scripts/update.sh)"` + commandString := `bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/AllanCapistrano/gbc/main/scripts/update.sh)"` command := exec.Command("/bin/bash", "-c", commandString) err := command.Run()