Skip to content

Commit

Permalink
fix: format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawn-Huang-Tron committed Sep 5, 2023
1 parent 499f84d commit 91fadbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/btfs/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ environment variable:
return err
}
fmt.Println("btfs configuration file already exists!")
fmt.Println("We have renamed it to %s", newPath)
fmt.Println("We have renamed it to ", newPath)
}

if err := commands.UnTar(backupPath, dstPath); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion core/commands/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ var RecoveryCmd = &cmds.Command{
return err
}
fmt.Println("btfs configuration file already exists!")
fmt.Println("We have renamed it to %s", newPath)
fmt.Println("We have renamed it to ", newPath)
}

if err := UnTar(backupPath, dstPath); err != nil {
Expand Down

0 comments on commit 91fadbb

Please sign in to comment.