From 24844bbde49da98b7ed2f3db4a5dccef518c18de Mon Sep 17 00:00:00 2001 From: Shlok Patel Date: Wed, 1 Dec 2021 03:19:06 +0530 Subject: [PATCH] change extracted zip name to _user. Fixes #30 --- cmd/use.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/use.go b/cmd/use.go index 2ae0152..452967a 100644 --- a/cmd/use.go +++ b/cmd/use.go @@ -65,7 +65,7 @@ func useBare(bareName, desti string) { downloadZipName := parser.BareObj.BareName + ".zip" downloadZipPath := filepath.Join(BarePath, "tmp", downloadZipName) - extractZipName := user + "_" + repo + "_" + branch + extractZipName := parser.BareObj.BareName + "_" + user extractZipPath := BarePath destiPath := filepath.Join(extractZipPath, extractZipName)