Skip to content
Snippets Groups Projects
Commit b942c3a9 authored by yanmorin's avatar yanmorin
Browse files

Minor correction to install
parent 279b089a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment