mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2025-12-18 20:16:05 +00:00
8 lines
236 B
Bash
Executable File
8 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
for filename in "$@"; do
|
|
if [[ "${filename}" =~ values.ya?ml$ ]] || [[ "${filename}" =~ secrets?.ya?ml$ ]] || [[ "${filename}" =~ .env$ ]]; then
|
|
sops -e -i "${filename}"
|
|
git add "${filename}"
|
|
fi
|
|
done
|