bakustarver/rpgmakermlinux-cicpoffs

Installation failed on Arch Linux

Closed this issue · 4 comments

Describe the bug
The installation failed on Arch Linux for some reason. It

To Reproduce
Steps to reproduce the behavior:
Copy-paste the installation script, run "rpgmaker-linux" and the log returned "command not found"

Expected behavior
Nothing, or a help message

Desktop (please complete the following information):
OS: Arch Linux (with ext4 as filesystem)
Compositor: Hyprland

Log:

[chutienbinh@ASUS Summer Memories+ v2.03.10 Linux]$ wget -qO- "https://raw.githubusercontent.com/bakustarver/rpgmakermlinux-cicpoffs/main/installgithub.sh" | bash
--2024-10-16 16:51:04--  https://github.com/bakustarver/rpgmakermlinux-cicpoffs/releases/download/v1.1.1/rpgmakerlinux-x86_64-v1.1.1.tar.gz
Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt'
Resolving github.com (github.com)... 20.205.243.166
Connecting to github.com (github.com)|20.205.243.166|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/766951109/f4d3b4dd-4e63-4c1e-b94f-d97b862628c5?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20241016%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241016T095104Z&X-Amz-Expires=300&X-Amz-Signature=ed4012a907f40e33bb47d08e3ca5556c6593e380df5de2b501285858c09d2202&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3Drpgmakerlinux-x86_64-v1.1.1.tar.gz&response-content-type=application%2Foctet-stream [following]
--2024-10-16 16:51:05--  https://objects.githubusercontent.com/github-production-release-asset-2e65be/766951109/f4d3b4dd-4e63-4c1e-b94f-d97b862628c5?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20241016%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241016T095104Z&X-Amz-Expires=300&X-Amz-Signature=ed4012a907f40e33bb47d08e3ca5556c6593e380df5de2b501285858c09d2202&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3Drpgmakerlinux-x86_64-v1.1.1.tar.gz&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.108.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 199081188 (190M) [application/octet-stream]
Saving to: ‘/tmp/rpgmakerlinux-x86_64-v1.1.1.tar.gz’

rpgmakerlinux-x86_64-v 100%[===========================>] 189,86M  4,87MB/s    in 28s     

2024-10-16 16:51:34 (6,74 MB/s) - ‘/tmp/rpgmakerlinux-x86_64-v1.1.1.tar.gz’ saved [199081188/199081188]

Installing rpgmaker-linux v1.1.1
Missing /home/chutienbinh/desktopapps/nwjs creating one
Installation Done
[chutienbinh@ASUS Summer Memories+ v2.03.10 Linux]$ rpgmaker-linux
bash: rpgmaker-linux: command not found

Ok, so the installation of the application works (managed to run Summer Memories+ by right click in the drop down menu), but the command is not register for some reason

the rpgmaker-linux is placed in the ~/.local/bin path, which is the default path for executable files.

This folder may not exist after linux installation,
after rebooting the PC, the rpgmaker-linux command should work.

You can check these lines in the “$HOME/.profile” file and add them if they are missing.

if [ -d "$HOME/.local/bin" ] ; then
    PATH="$HOME/.local/bin:$PATH"
fi

It's installed by default in Ubuntu, Manjaro, I don't know about arch linux.

I fixed it after set an alias in bash and fish. Thanks anyway