5 lines
173 B
Bash
5 lines
173 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
wget "https://github.com/AnotherFoxGuy/conan-onefile/releases/latest/download/conan-linux" -nv -O /tmp/conan
|
|
install -m 755 /tmp/conan /usr/local/bin/ |