Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 7f21457

Browse files
authored
Fix architecture var parsing (#39)
[fix] Explicity make architecture mapping strings to avoid string/int confusion.
1 parent 846e7fc commit 7f21457

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

vars/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
go_arch_map:
3-
i386: 386
4-
x86_64: amd64
5-
aarch64: arm64
6-
armv7l: armv7
7-
armv6l: armv6
3+
i386: '386'
4+
x86_64: 'amd64'
5+
aarch64: 'arm64'
6+
armv7l: 'armv7'
7+
armv6l: 'armv6'

0 commit comments

Comments
 (0)