Ver código fonte

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

pull/117/head
Samuel FORESTIER 4 anos atrás
pai
commit
6185780cf7
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      uninstall.sh

+ 1
- 1
uninstall.sh Ver arquivo

@@ -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


Carregando…
Cancelar
Salvar