mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-01-31 01:13:06 +09:00
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd "$script_dir"
|
|
|
|
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the uninstall script" && exit 1
|
|
|
|
ninja -C build uninstall
|
|
|
|
echo "Successfully uninstalled gpu-screen-recorder"
|