Skip to content

Commit

Permalink
fix: mistake in line ending with shell cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
codedwrench committed Nov 9, 2023
1 parent 2febc6e commit ec2d1cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Resources/Ansible_Windows/base_scripts/install_boost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec2d1cf

Please sign in to comment.