diff --git a/cmd/clear.go b/cmd/clear.go index 93d53b5..bbbbc04 100644 --- a/cmd/clear.go +++ b/cmd/clear.go @@ -1,7 +1,7 @@ package cmd import ( - degit "github.com/qiushiyan/go-degit/pkg" + degit "github.com/qiushiyan/degit/pkg" "github.com/spf13/cobra" ) diff --git a/cmd/clone.go b/cmd/clone.go index 8a8a8d8..365d606 100644 --- a/cmd/clone.go +++ b/cmd/clone.go @@ -3,7 +3,7 @@ package cmd import ( "fmt" - degit "github.com/qiushiyan/go-degit/pkg" + degit "github.com/qiushiyan/degit/pkg" "github.com/spf13/cobra" ) diff --git a/degit.rb b/degit.rb index 3a5bddd..7969b77 100644 --- a/degit.rb +++ b/degit.rb @@ -8,7 +8,7 @@ class Degit < Formula version "0.0.4" on_macos do - url "https://github.com/qiushiyan/go-degit/releases/download/v0.0.4/go-degit_Darwin_all.tar.gz" + url "https://github.com/qiushiyan/degit/releases/download/v0.0.4/go-degit_Darwin_all.tar.gz" sha256 "65a49f20378baa9b9ceea7bdfd771280cf158dbe48d0211b307f7adbeea7658b" def install @@ -19,7 +19,7 @@ def install on_linux do on_intel do if Hardware::CPU.is_64_bit? - url "https://github.com/qiushiyan/go-degit/releases/download/v0.0.4/go-degit_Linux_x86_64.tar.gz" + url "https://github.com/qiushiyan/degit/releases/download/v0.0.4/go-degit_Linux_x86_64.tar.gz" sha256 "53376e7ce092b7ebce567c8e3a33ac2406bc1e0ab142717986482e090fec56c2" def install @@ -29,7 +29,7 @@ def install end on_arm do if Hardware::CPU.is_64_bit? - url "https://github.com/qiushiyan/go-degit/releases/download/v0.0.4/go-degit_Linux_arm64.tar.gz" + url "https://github.com/qiushiyan/degit/releases/download/v0.0.4/go-degit_Linux_arm64.tar.gz" sha256 "9301a7ab4e5953894717538d9e6bc3b367dc6327fc2908eb787ee5474300fbed" def install diff --git a/go.mod b/go.mod index 6692f65..0d544c2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/qiushiyan/go-degit +module github.com/qiushiyan/degit go 1.22.2 diff --git a/main.go b/main.go index 4df0f62..a023d11 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/qiushiyan/go-degit/cmd" + "github.com/qiushiyan/degit/cmd" ) func setDefaultCommandIfNonePresent() {