From 39b946ec697d2311368249ce3342d1f995d977f1 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 8 Aug 2018 09:32:13 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strip.vala b/src/strip.vala index a30e35e..23d4174 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -1071,7 +1071,7 @@ public class Strip : GLib.Object { } - if (StripApplication.opt_stamp && GLib.FileUtils.test( basepath + subpath + ".strip-done-stamp", GLib.FileTest.EXISTS )) { + if (StripApplication.opt_stamp && GLib.FileUtils.test( basepath + subpath + "/.strip-done-stamp", GLib.FileTest.EXISTS )) { return; } @@ -1160,7 +1160,7 @@ public class Strip : GLib.Object { // completed this folder if (StripApplication.opt_stamp) { - GLib.FileUtils.set_contents (basepath + subpath + ".strip-done-stamp", "Stripper done"); + GLib.FileUtils.set_contents (basepath + subpath + "/.strip-done-stamp", "Stripper done"); } -- 2.39.2