mirror of
https://github.com/radareorg/radare2.git
synced 2026-05-29 08:29:51 +09:00
9 lines
153 B
Bash
Executable File
9 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "${HOME}" ]; then
|
|
echo "Missing HOME environment" > /dev/stderr
|
|
exit 1
|
|
fi
|
|
PREFIX="${HOME}/.local"
|
|
make uninstall PREFIX="${PREFIX}"
|