Files
lilleback-infra/helpers/delete-passwords.sh
2024-12-28 12:04:44 +01:00

9 lines
152 B
Bash
Executable File

#!/bin/bash
if [[ -d "./.passwords" ]]
then
rm -rf "./.passwords"
echo "Deleted passwords"
else
echo "There were no passwords to delete"
fi