This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
scrcpy-debify/clean.sh
2024-04-22 14:33:44 -06:00

8 lines
154 B
Bash
Executable file

#!/bin/bash
script_root=$(dirname $0)
find "${script_root}" -name "*.deb" -delete
if [[ -d "${script_root}/tmp" ]];then
rm -r "${script_root}/tmp"
fi