summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/distros.nim2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pure/distros.nim b/lib/pure/distros.nim
index cdda72089..ff30f6134 100644
--- a/lib/pure/distros.nim
+++ b/lib/pure/distros.nim
@@ -222,6 +222,8 @@ proc foreignDepInstallCmd*(foreignPackageName: string): (string, bool) =
       result = ("rpm -ivh " & p, true)
     elif detectOs(ArchLinux):
       result = ("pacman -S " & p, true)
+    else:
+      result = ("<your package manager here> install " & p, true)
   else:
     result = ("brew install " & p, true)