base-files: fix syntax error in the INSTALL script.
This commit is contained in:
parent
428c34d1f0
commit
d56c479cb8
|
@ -81,7 +81,7 @@ post)
|
||||||
echo "Creating system directories/symlinks..."
|
echo "Creating system directories/symlinks..."
|
||||||
make_system_dirs
|
make_system_dirs
|
||||||
# Enable shadow passwd/groups.
|
# Enable shadow passwd/groups.
|
||||||
if [ -x bin/pwconv && -x bin/grpconv -a "$(id -u)" -eq 0 ]; then
|
if [ -x bin/pwconv -a -x bin/grpconv -a "$(id -u)" -eq 0 ]; then
|
||||||
pwconv && grpconv
|
pwconv && grpconv
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'base-files'
|
# Template file for 'base-files'
|
||||||
pkgname=base-files
|
pkgname=base-files
|
||||||
version=0.126
|
version=0.125
|
||||||
revision=1
|
revision=1
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
depends="xbps-triggers"
|
depends="xbps-triggers"
|
||||||
|
|
Loading…
Reference in New Issue