Skip to content

Commit

Permalink
Quotes and escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed Jan 8, 2024
1 parent d0cc094 commit f886420
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rtools-make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
jobs:
rtools-build-check:
runs-on: windows-latest
name: R {{ matrix.config.r }} with Rtools {{ matrix.config.rtools }}
name: R ${{ matrix.config.r }} with Rtools ${{ matrix.config.rtools }}

strategy:
fail-fast: false
Expand All @@ -42,7 +42,7 @@ jobs:
rtools-version: ${{ matrix.config.rtools }}

- name: Set path for Rtools${{ matrix.config.rtools }}
run: echo ${{ matrix.config.path }} | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
run: echo "${{ matrix.config.path }}" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8

- name: Build Math libs
shell: powershell
Expand Down
4 changes: 2 additions & 2 deletions lib/tbb_2020.3/build/windows.inc
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ detect_js = $(shell cmd //C "cscript //NoLogo //E:jscript $(tbb_root)/build/dete

# TODO give an error if archs doesn't match
ifndef arch
export arch:=$(call detect_js, /arch $(compiler))
export arch:=$(call detect_js, //arch $(compiler))
endif

ifndef runtime
export runtime:=$(call detect_js, /runtime $(compiler))
export runtime:=$(call detect_js, //runtime $(compiler))
endif

native_compiler := cl
Expand Down

0 comments on commit f886420

Please sign in to comment.