We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300a18a commit 0492a53Copy full SHA for 0492a53
1 file changed
bin/install-nplinker-deps
@@ -55,7 +55,10 @@ echo -e "⏳ Installation will take about 5 minutes\n"
55
56
if [[ "$OSTYPE" == "linux"* ]]; then
57
# detect package manager for Linux
58
- if command -v apt &> /dev/null; then
+ if command -v emerge &> /dev/null; then
59
+ echo -e "✅ Package manager is 'emerge'\n"
60
+ do_install="sudo emerge -a"
61
+ elif command -v apt &> /dev/null; then
62
echo -e "✅ Package manager is 'apt'\n"
63
if ${run_on_github}; then
64
do_install="sudo apt install -y"
0 commit comments