base-files: fix a syntax error introduced in previous...

This commit is contained in:
Juan RP 2015-12-21 16:28:31 +01:00
parent fc23959d0e
commit e4a2e66696
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
if [ -z "${XDG_RUNTIME_DIR}" ]; then
export XDG_RUNTIME_DIR=/tmp/${UID:-$(id -u)}-runtime-dir
if [ -w /tmp ] && [ ! -d "${XDG_RUNTIME_DIR}"; then
if [ -w /tmp ] && [ ! -d "${XDG_RUNTIME_DIR}" ]; then
mkdir -p "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
chmod 0700 "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
fi

View file

@ -1,6 +1,6 @@
# Template file for 'base-files'
pkgname=base-files
version=0.136
version=0.137
revision=1
bootstrap=yes
depends="xbps-triggers"