diff --git a/tasks/install-code-styles.yml b/tasks/install-code-styles.yml index 4bff1c8..24d259c 100644 --- a/tasks/install-code-styles.yml +++ b/tasks/install-code-styles.yml @@ -35,7 +35,7 @@ - name: install downloaded codestyles become: yes copy: - src: "{{ intellij_download_dir }}//intellij-codestyle-{{ item.1.url | regex_replace('^.*/([^/]+).xml$', '\\1') }}-{{ item.1.url | hash('sha256') }}.xml" + src: "{{ intellij_download_dir }}/intellij-codestyle-{{ item.1.url | regex_replace('^.*/([^/]+).xml$', '\\1') }}-{{ item.1.url | hash('sha256') }}.xml" remote_src: yes dest: '~{{ item.0.username }}/{{ intellij_user_config_dir }}/codestyles/{{ item.1.name }}.xml' force: yes diff --git a/tasks/install-inspection-profiles.yml b/tasks/install-inspection-profiles.yml index 40ba349..2ef2794 100644 --- a/tasks/install-inspection-profiles.yml +++ b/tasks/install-inspection-profiles.yml @@ -15,7 +15,7 @@ - name: download inspection profiles get_url: url: '{{ url }}' - dest: "{{ intellij_download_dir }}//intellij-inspection-profile-{{ url | regex_replace('^.*/([^/]+).xml$', '\\1') }}-{{ url | hash('sha256') }}.xml" # noqa 204 + dest: "{{ intellij_download_dir }}/intellij-inspection-profile-{{ url | regex_replace('^.*/([^/]+).xml$', '\\1') }}-{{ url | hash('sha256') }}.xml" # noqa 204 force: no use_proxy: yes validate_certs: yes