From b0950f7c60adeabcf3df75d924fed3a328df13a5 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 10 May 2019 22:07:21 -0400 Subject: [PATCH] Fix yamllint: variable spaces before and after Signed-off-by: Thanh Ha Change-Id: Ic7279f19adf855002f050ae9568d87dcb1e6a6ab --- tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 66ead18..a7a3b92 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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 -- 2.16.6