base-files: fix a syntax error introduced in previous...
This commit is contained in:
parent
fc23959d0e
commit
e4a2e66696
srcpkgs/base-files
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user