Fix yamllint: variable spaces before and after 22/15622/1
authorThanh Ha <zxiiro@gmail.com>
Sat, 11 May 2019 02:07:21 +0000 (22:07 -0400)
committerThanh Ha <zxiiro@gmail.com>
Sat, 11 May 2019 02:07:41 +0000 (22:07 -0400)
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
Change-Id: Ic7279f19adf855002f050ae9568d87dcb1e6a6ab

tasks/main.yml

index 66ead18..a7a3b92 100644 (file)
@@ -1,18 +1,18 @@
 ---
-- name: 'Download protoc binary {{protobuf_version}}'
+- name: 'Download protoc binary {{ protobuf_version }}'
   get_url:
-    url: https://github.com/google/protobuf/releases/download/v{{protobuf_version}}/protoc-{{protobuf_version}}-linux-x86_64.zip
-    dest: /tmp/protobuf-{{protobuf_version}}-linux-x86_64.zip
-    checksum: '{{protoc_checksum}}'
+    url: https://github.com/google/protobuf/releases/download/v{{ protobuf_version }}/protoc-{{ protobuf_version }}-linux-x86_64.zip
+    dest: /tmp/protobuf-{{ protobuf_version }}-linux-x86_64.zip
+    checksum: '{{ protoc_checksum }}'
 
 - name: Ensure protoc unpack directory exists
   file:
     path: /tmp/protoc
     state: directory
 
-- name: 'Unarchive protoc {{protobuf_version}} binary'
+- name: 'Unarchive protoc {{ protobuf_version }} binary'
   unarchive:
-    src: /tmp/protobuf-{{protobuf_version}}-linux-x86_64.zip
+    src: /tmp/protobuf-{{ protobuf_version }}-linux-x86_64.zip
     dest: /tmp/protoc
     remote_src: true