From 32c317f3fa71abb40acb5e5ae523529d2a1c54dd Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Sun, 17 Dec 2023 18:49:47 +0100 Subject: [PATCH] Update .gitignore to exclude all generated files (#1394) updated a typo in the configure.sh file for turnserver.conf backup --- .gitignore | 19 ++++++++++++++----- infrastructure_files/configure.sh | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index d8fafb2c812..c4f90b84723 100644 --- a/.gitignore +++ b/.gitignore @@ -6,11 +6,20 @@ bin/ .env conf.json http-cmds.sh -infrastructure_files/artifacts/management.json -infrastructure_files/artifacts/management-*.json -infrastructure_files/artifacts/docker-compose.yml -infrastructure_files/artifacts/openid-configuration.json -infrastructure_files/artifacts/turnserver.conf +setup.env +infrastructure_files/**/Caddyfile +infrastructure_files/**/dashboard.env +infrastructure_files/**/zitadel.env +infrastructure_files/**/management.json +infrastructure_files/**/management-*.json +infrastructure_files/**/docker-compose.yml +infrastructure_files/**/openid-configuration.json +infrastructure_files/**/turnserver.conf +infrastructure_files/**/management.json.bkp.** +infrastructure_files/**/management-*.json.bkp.** +infrastructure_files/**/docker-compose.yml.bkp.** +infrastructure_files/**/openid-configuration.json.bkp.** +infrastructure_files/**/turnserver.conf.bkp.** management/management client/client client/client.exe diff --git a/infrastructure_files/configure.sh b/infrastructure_files/configure.sh index 22ddcb07b42..5c87361b63a 100755 --- a/infrastructure_files/configure.sh +++ b/infrastructure_files/configure.sh @@ -197,7 +197,7 @@ if test -f "${artifacts_path}/management.json"; then fi if test -f "${artifacts_path}/turnserver.conf"; then - cp ${artifacts_path}/turnserver.conf "${artifacts_path}/turnserver.conf.bpk.${bkp_postfix}" + cp ${artifacts_path}/turnserver.conf "${artifacts_path}/turnserver.conf.bkp.${bkp_postfix}" fi envsubst $artifacts_path/docker-compose.yml envsubst $artifacts_path/management.json