ソースを参照

Hide error if not installed as a package or if `dpkg` is not available

pull/117/head
Samuel FORESTIER 4年前
コミット
6185780cf7
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      uninstall.sh

+ 1
- 1
uninstall.sh ファイルの表示

@@ -1,6 +1,6 @@
#!/usr/bin/env sh

if dpkg -l log2ram ; then
if dpkg -l log2ram 2> /dev/null; then
echo "Please run : apt remove log2ram"
exit 1
fi


読み込み中…
キャンセル
保存