Update package version to 0.114.1
This commit is contained in:
+8
-6
@@ -1,8 +1,10 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
SHELL="nu"
|
||||
SHELLS="/bin/nu /usr/bin/nu"
|
||||
|
||||
if ! grep "${SHELL}" "$BPM_ROOT"/etc/shells; then
|
||||
echo "/bin/${SHELL}" | tee -a "$BPM_ROOT"/etc/shells
|
||||
echo "/usr/bin/${SHELL}" | tee -a "$BPM_ROOT"/etc/shells
|
||||
fi
|
||||
for _shell in $SHELLS; do
|
||||
if ! grep -q "^${_shell}\$" /etc/shells; then
|
||||
echo "Adding '$_shell' to /etc/shells..."
|
||||
echo "$_shell" | tee -a /etc/shells 1>/dev/null
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user