Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 71a42f4

Browse files
Lakshmipathihf
authored andcommitted
Fix: Use correct indentation for 'when' conditional statement
Signed-off-by: laks <[email protected]>
1 parent 41e5397 commit 71a42f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ansible/tasks/internal/admin-api.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
- name: Setting arch (x86)
2121
set_fact:
2222
arch: "x86"
23-
when: platform == "amd64"
23+
when: platform == "amd64"
2424

2525
- name: Setting arch (arm)
2626
set_fact:
2727
arch: "arm64"
28-
when: platform == "arm64"
28+
when: platform == "arm64"
2929

3030
- name: adminapi - download commit archive
3131
get_url:

ansible/tasks/setup-postgres.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@
5454
- name: Setting CFLAGS (arm)
5555
set_fact:
5656
cflags: "-moutline-atomics -mtune=neoverse-n1 -fsigned-char"
57-
when: platform == "arm64"
57+
when: platform == "arm64"
5858

5959
- name: Setting CFLAGS (x86)
6060
set_fact:
6161
cflags: "-fsigned-char"
62-
when: platform == "amd64"
62+
when: platform == "amd64"
6363

6464
- name: Postgres - configure
6565
shell:

0 commit comments

Comments
 (0)