Skip to content

Commit 353477b

Browse files
committed
style: Fix whitespace in template vars
1 parent ec64761 commit 353477b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version: '3'
22

33
includes:
4-
first: "{{ .FIRST_REMOTE_URL }}"
4+
first: "{{.FIRST_REMOTE_URL}}"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: '3'
22

33
includes:
4-
second: "{{ .SECOND_REMOTE_URL }}"
4+
second: "{{.SECOND_REMOTE_URL}}"
55

66
tasks:
77
write-file:
88
requires:
99
vars: [CONTENT, OUTPUT_FILE]
1010
cmd: |
11-
echo "{{ .CONTENT }}" > "{{ .OUTPUT_FILE }}"
11+
echo "{{.CONTENT}}" > "{{.OUTPUT_FILE}}"

testdata/includes_remote/first/second/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ tasks:
55
requires:
66
vars: [CONTENT, OUTPUT_FILE]
77
cmd: |
8-
echo "{{ .CONTENT }}" > "{{ .OUTPUT_FILE }}"
8+
echo "{{.CONTENT}}" > "{{.OUTPUT_FILE}}"

0 commit comments

Comments
 (0)