From a77fde4bd23c0b52da51f026f9e0c245e963020a Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Mon, 28 Nov 2016 17:34:03 -0500 Subject: [PATCH] another tweak to stop aborting updates --- arch-ppa | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch-ppa b/arch-ppa index 75ddabd..6990045 100755 --- a/arch-ppa +++ b/arch-ppa @@ -166,8 +166,8 @@ update() { done # Check if package has uncommited changes if [ $(git -C $basedir diff HEAD $basedir/src/$pkg | wc -l) -gt 0 ]; then - echo "Package $pkg has uncommited changes. Commit or discard those changes first." - return 1 + echo "warning: Package $pkg has uncommited changes. Commit or discard those changes first." + #return 1 fi # Use a temporary dir to download all PKGBUILDS atomically [ -z "$tmp_dl" ] && tmp_dl=`mktemp -d`