diff options
Diffstat (limited to 'app/config/restore_configuration.sh')
-rwxr-xr-x | app/config/restore_configuration.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/config/restore_configuration.sh b/app/config/restore_configuration.sh index 33742e5..63d71a1 100755 --- a/app/config/restore_configuration.sh +++ b/app/config/restore_configuration.sh @@ -1,7 +1,7 @@ #!/bin/bash find {configuration,secrets}/$1 -type f \ - | grep --perl-regexp --invert-match "\.sample$|\.gen$|/.gitignore$" \ + | grep --perl-regexp --invert-match "\.sample$|\.gen$|\.gitignore|\.sh$" \ | while read filename; do consul kv put "${filename}" "@${filename}" done |