mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-31 09:52:57 +02:00
xbps-triggers: update to 0.113.
fix bug in register shell: match for whole line instead of substring.
This commit is contained in:
parent
bd2271be18
commit
6e9c4de132
2 changed files with 3 additions and 3 deletions
|
@ -36,8 +36,8 @@ run)
|
||||||
chmod 644 etc/shells
|
chmod 644 etc/shells
|
||||||
else
|
else
|
||||||
for f in ${register_shell}; do
|
for f in ${register_shell}; do
|
||||||
if ! grep -q $f etc/shells; then
|
if ! grep -qFx "$f" etc/shells; then
|
||||||
echo $f >> etc/shells
|
echo "$f" >> etc/shells
|
||||||
echo -n "Registered $f into "
|
echo -n "Registered $f into "
|
||||||
echo "/etc/shells."
|
echo "/etc/shells."
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'xbps-triggers'
|
# Template file for 'xbps-triggers'
|
||||||
pkgname=xbps-triggers
|
pkgname=xbps-triggers
|
||||||
version=0.112
|
version=0.113
|
||||||
revision=1
|
revision=1
|
||||||
archs=noarch
|
archs=noarch
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
|
|
Loading…
Add table
Reference in a new issue