9 lines
190 B
Bash
Executable file
9 lines
190 B
Bash
Executable file
#!/bin/bash
|
|
|
|
handleSecretChanges() {
|
|
secretsFolderPath="$HOME/.local/share/secrets"
|
|
|
|
git --git-dir "$secretsFolderPath/.git" --work-tree "$secretsFolderPath" push
|
|
}
|
|
|
|
handleSecretChanges
|