2907295f72
reverts most of5e142ef06c
0aedcd394d
will need another complex revert
6 lines
120 B
Bash
6 lines
120 B
Bash
#!/usr/bin/env bash
|
|
RM_FILE="/etc/apt/sources.list.d/forgejo-deb-lts.list"
|
|
if [ -f "$RM_FILE" ]; then
|
|
rm "$RM_FILE"
|
|
fi
|