summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2018-08-26 16:47:36 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2018-08-26 16:47:36 -0400
commitef6a4bbf93b81dc42efaa05b510d175d354dddba (patch)
tree8f8cc8182a73e597e9ac4bcf5228c4d1e923933c
parent52a4330353bff7dd6adddaf6ad8a2b69dbde2920 (diff)
config: STAGING must be absoluteparabola/20180826
Things are *mostly* happy with a relative STAGING, except that check_splitpkgs() will spew garbage.
-rw-r--r--config1
1 files changed, 1 insertions, 0 deletions
diff --git a/config b/config
index f470b70..9fcb3b2 100644
--- a/config
+++ b/config
@@ -25,6 +25,7 @@ SOURCE_CLEANUP_KEEP=30
LOCK_DELAY=10
[ -n "${STAGING:-}" ] || STAGING="$HOME/staging/unknown/staging"
+[[ $STAGING = /* ]] || STAGING="$PWD/$STAGING"
export TMPDIR="/tmp"
ARCHES=(x86_64 i686 armv7h)
DBEXT=".db.tar.gz"