From 2fbaf457d4c991bcc26287126131d1d10e444fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0tefan=20Baebler?= Date: Tue, 13 Sep 2022 15:10:11 +0200 Subject: [PATCH] fix yaml indent --- .github/workflows/make.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 1a15100..13cdc2e 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -61,12 +61,12 @@ jobs: - name: update timestamp if needed run: | - if [[ $(git diff --stat) != '' ]]; then - echo 'git dirty, updating timestamp' - date +%s > "timestamp.txt" - else - echo 'no git changes, no timestamp update needed' - fi + if [[ $(git diff --stat) != '' ]]; then + echo 'git dirty, updating timestamp' + date +%s > "timestamp.txt" + else + echo 'no git changes, no timestamp update needed' + fi # Runs a set of commands using the runners shell - name: Check git diff