python-libmaas icon indicating copy to clipboard operation
python-libmaas copied to clipboard

Makefile not working in master

Open erik78se opened this issue 3 years ago • 0 comments

https://github.com/maas/python-libmaas/blob/1f6378049e8f3cc8a43941ae0e4a02b5f8afc3c7/doc/index.md

Failure....

erik@node:~/allcode/python-libmaas$ make
if [ -x /usr/bin/snap ]; then sudo snap install --classic snapcraft; fi
[sudo] password for erik: 

This code breaks the make since it states that if the file is executable, then install.

It should be the other way around...

# ---
install-dependencies:
        if [ -x /usr/bin/snap ]; then sudo snap install --classic snapcraft; fi
# ---

erik78se avatar Mar 23 '21 09:03 erik78se