From d99f64b52e2549ff46cabfb9b25d72b1c4cc0cb2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 01:52:40 +0000 Subject: [PATCH] Add .gitignore and fix uninstall script executable permissions for release compliance Co-authored-by: ShaYmez <76499782+ShaYmez@users.noreply.github.com> --- .gitignore | 43 ++++++++++++++++++++++++++++++++++++++++ usr/local/sbin/uninstall | 0 2 files changed, 43 insertions(+) create mode 100644 .gitignore mode change 100644 => 100755 usr/local/sbin/uninstall diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1823e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Temporary files +*.tmp +*.swp +*.swo +*~ +.DS_Store + +# Log files +*.log + +# Backup files +*.bak +*.backup + +# IDE and editor files +.vscode/ +.idea/ +*.sublime-* + +# Python bytecode +__pycache__/ +*.py[cod] +*$py.class +*.so + +# Virtual environments +venv/ +env/ +ENV/ + +# Distribution / packaging +dist/ +build/ +*.egg-info/ + +# Test and coverage +.coverage +htmlcov/ +.pytest_cache/ + +# Local development files +.env +.env.local diff --git a/usr/local/sbin/uninstall b/usr/local/sbin/uninstall old mode 100644 new mode 100755