From 68f511b08c39080a731ac781a9e7bdb099cc69fa Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Wed, 15 Jul 2020 22:39:27 +0200 Subject: [PATCH] Fix: Do not work on the symlink Signed-off-by: Knut Ahlers --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index b4a191b..cb86911 100755 --- a/run.sh +++ b/run.sh @@ -68,7 +68,7 @@ gosu builder makepkg ${MAKEPKG_OPTS[@]} PACKAGE=($(find . -regextype egrep -regex '^.*\.pkg(|\.tar|\.tar\.xz|\.tar\.zst)$')) -REPODB=$(find /repo -regextype egrep -regex '^.*\.db(|\.tar|\.tar\.xz|\.tar.zst)$') +REPODB=$(find /repo -regextype egrep -regex '^.*\.db(\.tar|\.tar\.xz|\.tar.zst)$') if [ -z "${REPODB}" ]; then echo "No database found in /repo, not adding package." echo "The built package is available in ${PACKAGE}"