Fixed an issue with snapshot deletion

This commit is contained in:
Tony George 2013-10-09 21:11:06 +05:30
parent 248642bd80
commit 0d776e5f05
2 changed files with 2 additions and 2 deletions

View File

@ -754,7 +754,7 @@ public class Main : GLib.Object{
progress_text = _("Cleaning up...");
log_msg(progress_text);
cmd = "rm -rfd \"%s\"".printf(sync_path);
cmd = "rm -rf \"%s\"".printf(sync_path);
if (SHOW_COMMANDS) { log_msg(cmd, true); }
@ -1553,7 +1553,7 @@ public class Main : GLib.Object{
try{
var f = File.new_for_path(snapshot_to_delete.path);
if(f.query_exists()){
cmd = "rm -rfd \"%s\"".printf(snapshot_to_delete.path);
cmd = "rm -rf \"%s\"".printf(snapshot_to_delete.path);
if (SHOW_COMMANDS) { log_msg(cmd, true); }

Binary file not shown.