From e4a2e666966b608d620f857ce70c57d40eaae781 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 21 Dec 2015 16:28:31 +0100 Subject: [PATCH] base-files: fix a syntax error introduced in previous... --- srcpkgs/base-files/files/xdg-runtime-dir.sh | 2 +- srcpkgs/base-files/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/base-files/files/xdg-runtime-dir.sh b/srcpkgs/base-files/files/xdg-runtime-dir.sh index dddaa9bbc1..8a2161d0f6 100644 --- a/srcpkgs/base-files/files/xdg-runtime-dir.sh +++ b/srcpkgs/base-files/files/xdg-runtime-dir.sh @@ -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 diff --git a/srcpkgs/base-files/template b/srcpkgs/base-files/template index 2b8344dcf4..e45fc08176 100644 --- a/srcpkgs/base-files/template +++ b/srcpkgs/base-files/template @@ -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"