Fix travis errors.

This commit is contained in:
Kyle Isom
2017-11-21 12:42:53 -08:00
parent 263a5d3973
commit 4122f01644
3 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,6 @@ func newName(path string) (string, error) {
func move(dst, src string, force bool) (err error) {
if fileutil.FileDoesExist(dst) && !force {
return fmt.Errorf("%s exists (pass the -f flag to overwrite)", dst)
return nil
}
dstFile, err := os.Create(dst)
if err != nil {