mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:03:01 +02:00
* Initial plan * fix: format shell scripts with shfmt (convert tabs to 2 spaces) Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * feat: enhance shell-check workflow for PR pre-merge validation - Add pull_request_target trigger to check PRs from forks - Add explicit failure message with instructions - Create BRANCH_PROTECTION.md with setup guide - Ensure workflow runs on all PRs targeting main/master Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * refactor: improve workflow security and remove redundant exit code - Remove pull_request_target to avoid executing untrusted fork code - Remove redundant exit 1 from failure step - Update documentation to reflect changes - Standard pull_request trigger handles forks securely Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>
17 lines
477 B
Bash
Executable File
17 lines
477 B
Bash
Executable File
#!/system/bin/sh
|
|
# Cleanup when module is uninstalled
|
|
GUARDIAN_DIR="/data/adb/android_guardian"
|
|
|
|
# Only allow uninstall if control file says DISABLED
|
|
if [ -f "$GUARDIAN_DIR/control" ]; then
|
|
status=$(cat "$GUARDIAN_DIR/control")
|
|
if [ "$status" != "DISABLED" ]; then
|
|
echo "Guardian is still enabled! Use ADB to disable first:"
|
|
echo " adb shell 'echo DISABLED > /data/adb/android_guardian/control'"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# Clean up guardian data
|
|
rm -rf "$GUARDIAN_DIR"
|