Skip to content

Commit

Permalink
Preserve backticks around BUILROOT and use relative file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kendal committed May 13, 2024
1 parent c54de5e commit 0f60b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bcny-firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ jobs:
run: |
# Gather all built libraries.
$XMLLibFiles=""
$LibFileNames=(Get-ChildItem -Recurse -Path ${{ github.workspace }}\BuildRoot\Library\firebase -Include *.lib)
$LibFileNames=(Get-ChildItem -Name -Recurse -Path ${{ github.workspace }}\BuildRoot\Library\firebase -Include *.lib)
foreach ($LibFileName in $LibFileNames) {
$XMLLibFiles += "<file src=`"``$BUILDROOT``$LibFileName`" target=`"lib`" />`n"
$XMLLibFiles += "<file src=`"```$BUILDROOT```$$LibFileName`" target=`"lib`" />`n"
}
@"
Expand Down

0 comments on commit 0f60b0d

Please sign in to comment.