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
|
@ -36,8 +36,8 @@ run)
|
|||
chmod 644 etc/shells
|
||||
else
|
||||
for f in ${register_shell}; do
|
||||
if ! grep -q $f etc/shells; then
|
||||
echo $f >> etc/shells
|
||||
if ! grep -qFx "$f" etc/shells; then
|
||||
echo "$f" >> etc/shells
|
||||
echo -n "Registered $f into "
|
||||
echo "/etc/shells."
|
||||
fi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'xbps-triggers'
|
||||
pkgname=xbps-triggers
|
||||
version=0.112
|
||||
version=0.113
|
||||
revision=1
|
||||
archs=noarch
|
||||
bootstrap=yes
|
||||
|
|
Loading…
Reference in New Issue