mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-27 07:52:55 +02:00
base-files: fix a syntax error introduced in previous...
This commit is contained in:
parent
fc23959d0e
commit
e4a2e66696
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
if [ -z "${XDG_RUNTIME_DIR}" ]; then
|
if [ -z "${XDG_RUNTIME_DIR}" ]; then
|
||||||
export XDG_RUNTIME_DIR=/tmp/${UID:-$(id -u)}-runtime-dir
|
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
|
mkdir -p "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
|
||||||
chmod 0700 "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
|
chmod 0700 "${XDG_RUNTIME_DIR}" >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'base-files'
|
# Template file for 'base-files'
|
||||||
pkgname=base-files
|
pkgname=base-files
|
||||||
version=0.136
|
version=0.137
|
||||||
revision=1
|
revision=1
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
depends="xbps-triggers"
|
depends="xbps-triggers"
|
||||||
|
|
Loading…
Add table
Reference in a new issue