mmgen-wallet/scripts/deinstall.sh
philemon 3897ec3297
Version 0.8.7a
--testnet option added to all relevant scripts
  utility scripts under scripts/ updated
2016-11-14 14:45:08 +03:00

9 lines
162 B
Bash
Executable file

#!/bin/bash
CMD='rm -rf /usr/local/bin/mmgen-* /usr/local/lib/python2.7/dist-packages/mmgen*'
if [ "$EUID" = 0 ]; then
set -x; $CMD
else
set -x; sudo $CMD
fi