From 53f5b4ae1165f5b4fe204f9278861e272dcc39da Mon Sep 17 00:00:00 2001 From: szaimen Date: Fri, 11 Feb 2022 12:48:27 +0100 Subject: [PATCH 1/2] fix spellcheck warnings Signed-off-by: szaimen --- Containers/postgresql/start.sh | 2 +- app/readme.md | 2 +- php/templates/containers.twig | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Containers/postgresql/start.sh b/Containers/postgresql/start.sh index 1044e294..46f7ee00 100644 --- a/Containers/postgresql/start.sh +++ b/Containers/postgresql/start.sh @@ -92,6 +92,6 @@ if pg_dump --username "$POSTGRES_USER" "$POSTGRES_DB" > "$DUMP_FILE.temp"; then exit 0 else pg_ctl stop -m fast - echo "Database dump unsucessful!" + echo "Database dump unsuccessful!" exit 1 fi diff --git a/app/readme.md b/app/readme.md index 366d6337..9f639500 100644 --- a/app/readme.md +++ b/app/readme.md @@ -1,4 +1,4 @@ -## How to develope the app? +## How to develop the app? Please note that in order to check if an app is already downloaded Nextcloud will look for a folder with the same name as the app. diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 5b24a15e..78cb5771 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -60,7 +60,7 @@ Make sure that this server is reachable on Port 443 and you've correctly set up the DNS config for the domain that you enter.

- If you have a dynamic IP-adress, you can use e.g. DDclient with a compatible domain provider for DNS updates. + If you have a dynamic IP-address, you can use e.g. DDclient with a compatible domain provider for DNS updates. {% endif %} {% if domain != "" %} @@ -177,9 +177,9 @@ Last {{ borg_backup_mode }} failed! (Logs)

{% elseif backup_exit_code == 0 %} {% if borg_backup_mode == "backup" %} - Last {{ borg_backup_mode }} succesful on {{ last_backup_time }}! (Logs)

+ Last {{ borg_backup_mode }} successful on {{ last_backup_time }}! (Logs)

{% else %} - Last {{ borg_backup_mode }} succesful! (Logs)

+ Last {{ borg_backup_mode }} successful! (Logs)

{% endif %} {% endif %} {% endif %} From 1339be5045dd6f14f4f7e46a1397502af359d5f1 Mon Sep 17 00:00:00 2001 From: szaimen Date: Fri, 11 Feb 2022 12:58:19 +0100 Subject: [PATCH 2/2] error if reviewdog found something Signed-off-by: szaimen --- .github/workflows/spellcheck.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index b07b006c..12d9a2e8 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -16,3 +16,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} locale: "US" + fail_on_error: true