mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
Minor correction to install
This commit is contained in:
@ -26,11 +26,11 @@ cmmi() {
|
||||
if [ $configok -eq 0 ]; then
|
||||
echo -en 'Do you want to make and make install the package? (y/n) '
|
||||
read r
|
||||
if [ "$r" != "y" ]; then
|
||||
if [ "$r" = "y" ]; then
|
||||
configok=2
|
||||
fi
|
||||
fi
|
||||
if [ $configok -eq 0 ]; then
|
||||
if [ $configok -eq 2 ]; then
|
||||
make || return
|
||||
echo "Enter you password to install the package as $USER (make install): "
|
||||
if [ "$SFL_INSTALL_USER" = "$USER" ]; then
|
||||
|
Reference in New Issue
Block a user