You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on an Ubuntu 22.04.1 VM that does not yet have docker installed.
the script doesn't exit when docker is not found:
$ curl https://getnigiri.vulpem.com | bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3215 100 3215 0 0 9345 0 --:--:-- --:--:-- --:--:-- 9345
Fetching https://github.com/vulpemventures/nigiri/releases/latest...
Latest release tag = v0.4.1
Fetching https://github.com/vulpemventures/nigiri/releases/download/v0.4.1/nigiri-linux-amd64...
Moving binary to /usr/local/bin...
Setting binary permissions...
Checking for Docker and Docker compose...
Warning: Nigiri uses Docker and it seems not to be installed, check the official documentation for downloading it.
bash: line 119: [ linux: command not found
https://docs.docker.com/v17.12/install/linux/docker-ce/ubuntu/
🍣 Nigiri Bitcoin installed!
$
The script should probably exit immediately.
The test at line 119 reports an error (see above) that may be due to the previous test using == instead of =
/usr/local/bin/nigiri is created even though docker is not installed, leading to a "half install":
$ curl https://getnigiri.vulpem.com | bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 3215 100 3215 0 0 9352 0 --:--:-- --:--:-- --:--:-- 9345
Nigiri is already installed and will be deleted.
Info: when uninstalling an old Nigiri version Docker must be running.
Be sure to start the Docker daemon before launching this installation script.
Stopping Nigiri...
Removing Nigiri...
Removing local images...
main: line 28: docker: command not found
main: line 28: docker: command not found
main: line 28: docker: command not found
...
The script should probably check for pre-reqs (docker installed) before making any changes to the local FS.
The text was updated successfully, but these errors were encountered:
3 issues that came up when running
on an Ubuntu 22.04.1 VM that does not yet have docker installed.
The script should probably exit immediately.
The test at line 119 reports an error (see above) that may be due to the previous test using == instead of =
/usr/local/bin/nigiri is created even though docker is not installed, leading to a "half install":
The script should probably check for pre-reqs (docker installed) before making any changes to the local FS.
The text was updated successfully, but these errors were encountered: