From ac686ac066b5eb2648f1616872a8ff4ef78c466c Mon Sep 17 00:00:00 2001 From: LIN SE Date: Tue, 20 Sep 2022 11:49:05 +0200 Subject: [PATCH] fix missing argument in Show.newer and Show.replace --- install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.py b/install.py index d42276d..c768edf 100755 --- a/install.py +++ b/install.py @@ -280,10 +280,10 @@ class Show: print('cat %s' % join(dirpath, f)) def newer(self, files): - self.show('get from', files) + self.show('get from', self.dirpath, files) def older(self, files): - self.show('replace in', files) + self.show('replace in', self.dirpath, files) def missing(self, files): self.show('install in', self.dirpath, files)