From ec2d1cf8fa9f7586ace992c891ab1e8fa949eebc Mon Sep 17 00:00:00 2001 From: codedwrench Date: Thu, 9 Nov 2023 17:09:32 +0100 Subject: [PATCH] fix: mistake in line ending with shell cmd --- .../Ansible_Windows/base_scripts/install_boost.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Ansible_Windows/base_scripts/install_boost.yml b/Resources/Ansible_Windows/base_scripts/install_boost.yml index 19e846f..e437548 100644 --- a/Resources/Ansible_Windows/base_scripts/install_boost.yml +++ b/Resources/Ansible_Windows/base_scripts/install_boost.yml @@ -21,11 +21,11 @@ when: boost_download_result.msg is defined and boost_download_result.msg == "OK" - name: Build Boost - ansible.windows.win_shell: > - '{{ drive }}:\msys64\msys2_shell.cmd -mingw32 -defterm -no-start -here -c - "cd tools/build && ./bootstrap.bat mingw && cp b2 ../.. && cd ../.. && - ./tools/build/b2.exe --build-type=minimal --toolset=gcc variant=release link=static - runtime-link=static address-model=32 threading=multi --with-system --with-program_options stage"' + ansible.windows.win_shell: + "{{ drive }}:\\msys64\\msys2_shell.cmd -mingw32 -defterm -no-start -here -c \ + 'cd tools/build && ./bootstrap.bat mingw && cp b2 ../.. && cd ../.. && \ + ./tools/build/b2.exe --build-type=minimal --toolset=gcc variant=release link=static \ + runtime-link=static address-model=32 threading=multi --with-system --with-program_options stage'" args: chdir: "{{ drive }}:\\{{ install_dir }}\\boost" register: boost_build_output