We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de120be commit 072545fCopy full SHA for 072545f
cmd/root.go
@@ -17,7 +17,7 @@ var rootCmd = &cobra.Command{
17
// Uncomment the following line if your bare application
18
// has an action associated with it:
19
// Run: func(cmd *cobra.Command, args []string) { },
20
- Version: "1.0.4",
+ Version: "1.0.5",
21
}
22
23
// Execute adds all child commands to the root command and sets flags appropriately.
cmd/sync.go
@@ -26,7 +26,7 @@ var syncCmd = &cobra.Command{
26
color.Red("Is it a git repo?")
27
return
28
29
- toBranch := string(data)
+ toBranch := string(data[:len(data)-1])
30
if len(args) >= 2 {
31
args = append(args, args[0])
32
toBranch = args[1]
0 commit comments