weird spacing

This commit is contained in:
Lilian Jónsdóttir 2024-06-19 22:43:35 -07:00
parent 966643fd2e
commit bc8eadc65a

View file

@ -139,13 +139,15 @@ func Remove(files []Info) (removed int, err error) {
} }
func TrashFile(trashDir, name string) error { func TrashFile(trashDir, name string) error {
outdir := filepath.Join(trashDir, "files") var (
trashout := filepath.Join(trashDir, "info") outdir = filepath.Join(trashDir, "files")
trashout = filepath.Join(trashDir, "info")
filename = filepath.Base(name)
)
filename := filepath.Base(name)
trashinfo_filename := filepath.Join(trashout, filename+trash_info_ext) trashinfo_filename := filepath.Join(trashout, filename+trash_info_ext)
out_path := filepath.Join(outdir, filename) out_path := filepath.Join(outdir, filename)
if err := os.Rename(name, out_path); err != nil { if err := os.Rename(name, out_path); err != nil {
return err return err
} }