Skip to content

Commit 92ce71c

Browse files
authored
Compile action: fix missing $
1 parent 0bd38f9 commit 92ce71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/compile/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ runs:
4646
if: inputs.dependency-msbuild-target != ''
4747
shell: bash
4848
working-directory: ${{ github.workspace }}
49-
run: msbuild /t:{{ inputs.dependency-msbuild-target }} /p:KSPRoot=${{ env.KSP_ROOT }} ${{ inputs.solution-file-path }}
49+
run: msbuild /t:${{ inputs.dependency-msbuild-target }} /p:KSPRoot=${{ env.KSP_ROOT }} ${{ inputs.solution-file-path }}
5050

5151
- name: Download KSP Libs
5252
shell: bash

0 commit comments

Comments
 (0)