Skip to content

Commit

Permalink
[workflow] fix: filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
ifTNT committed Jul 4, 2024
1 parent 35b770d commit f55a9f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-win-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- name: Install Language
run: |
$baseUri = 'https://raw.github.com/jrsoftware/issrc/main/Files'
$downloadDir = "$env:ProgramFiles(x86)/Inno Setup 6/Languages"
$downloadDir = "$env:ProgramFiles(x86)\Inno Setup 6\Languages"
$files = @(
@{
Uri = "$baseUri/Languages/Unofficial/ChineseTraditional.isl"
OutFile = "$downloadDir/ChineseTraditional.isl"
OutFile = "$downloadDir\ChineseTraditional.isl"
},
@{
Uri = "$baseUri/Languages/Unofficial/ChineseSimplified.isl"
OutFile = "$downloadDir/ChineseSimplified.isl"
OutFile = "$downloadDir\ChineseSimplified.isl"
}
)
Expand Down

0 comments on commit f55a9f5

Please sign in to comment.