From 510f39c734225244010ec22745f86d441c862b31 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Sat, 4 Nov 2017 23:51:08 +0100 Subject: reproducible-archlinux: fix date arguments Signed-off-by: Mattia Rizzolo --- bin/reproducible_build_archlinux_pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index bcd43598..6f8335b9 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -84,7 +84,7 @@ choose_package() { *) MIN_AGE=365 # should never happen… ;; esac - touch -d "$(date -d '$MIN_AGE days ago' '+%Y-%m-%d') 00:00 UTC" $DUMMY + touch -d "$(date -d "$MIN_AGE days ago" '+%Y-%m-%d') 00:00 UTC" $DUMMY for PKG in $(sort -R ${ARCHLINUX_PKGS}_$REPO) ; do # build package if it has never build or at least $MIN_AGE days ago if [ ! -d $BASE/archlinux/$REPO/$PKG ] || [ $DUMMY -nt $BASE/archlinux/$REPO/$PKG ] ; then -- cgit v1.2.3-54-g00ecf