joglomedia / LEMPer

LEMPer Stack is terminal-based LEMP / LNMP ( Linux, Nginx, MariaDB, PostgreSQL, MongoDB, Redis, Memcache, PHP, Secure FTP ) installer and virtual host manager for Debian & Ubuntu cloud or virtual server (vps) and on-premise (bare metal).

Home Page:https://lemper.cloud/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installer not working on Ubuntu (UserLand for Android)

joglomedia opened this issue · comments

Describe the Issue / Bug
Install.sh exiting without any result

To Reproduce
Run ./install.sh on UserLand Ubuntu

Expected Behavior
Working like Ubuntu on other platform

Trouble shooting

set -eux

to see verbose output

Bug here this line

[ ! -d "${BUILD_DIR}" ] && run mkdir -p "${BUILD_DIR}"

Fix

    # Create a temporary directory for the LEMPer installation.
    BUILD_DIR=${BUILD_DIR:-"/tmp/lemper_build"}
    if [ ! -d "${BUILD_DIR}" ]; then
        run mkdir -p "${BUILD_DIR}"
    fi

awww men thanks xD got that issue for a while, had to manual add this fix for it to work :D

awww men thanks xD got that issue for a while, had to manual add this fix for it to work :D

Hi @HyCore sorry for late reply, a new fix will be released soon

Thanks for using LEMPer Stack ^^