Compare commits

...

3 Commits

Author SHA1 Message Date
c08693d39c Merge pull request 'Make pip-audit run inside Poetry' (#25) from pip_audit_tweak into main
Reviewed-on: #25
2025-12-25 10:25:41 +00:00
a8a15bab36 Make pip-audit run inside Poetry
All checks were successful
Lint & Security / precommit-and-security (pull_request) Successful in 59s
2025-12-25 10:24:05 +00:00
7719d2442d Add logo file, update README 2025-12-21 07:39:28 +00:00
3 changed files with 13 additions and 2 deletions

View File

@@ -22,8 +22,15 @@ jobs:
- name: Run pre-commit hooks - name: Run pre-commit hooks
run: pre-commit run --all-files --color always run: pre-commit run --all-files --color always
- name: Install Poetry
run: |
pip install poetry
poetry self add poetry-plugin-export
- name: Install pip-audit - name: Install pip-audit
run: pip install pip-audit run: pip install pip-audit
- name: Run pip-audit - name: Audit dependencies (Poetry lockfile)
run: pip-audit run: |
poetry export -f requirements.txt --without-hashes \
| pip-audit -r /dev/stdin

View File

@@ -4,6 +4,10 @@
# resrm # resrm
<div align="center">
<img src="resrm.png" alt="resrm logo" width="256" />
</div>
**resrm** is a safe, drop-in replacement for the Linux `rm` command with **undo/restore support**. **resrm** is a safe, drop-in replacement for the Linux `rm` command with **undo/restore support**.
It moves files to a per-user _trash_ instead of permanently deleting them, while still allowing full `sudo` support for root-owned files. It moves files to a per-user _trash_ instead of permanently deleting them, while still allowing full `sudo` support for root-owned files.

BIN
resrm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB