diff --git a/.github/workflows/win-exe.yml b/.github/workflows/win-exe.yml index 0c6585298..235b75808 100644 --- a/.github/workflows/win-exe.yml +++ b/.github/workflows/win-exe.yml @@ -163,7 +163,7 @@ jobs: --java-options "-Djavafx.verbose=${{ inputs.isDebug }}" --resource-dir dist/win/resources --icon dist/win/resources/Cryptomator.ico - --add-launcher "Debug_Cryptomator=dist/win/debug-launcher.properties" + --add-launcher "CryptomatorDebug=dist/win/debug-launcher.properties" - name: Patch Application Directory run: | cp dist/win/contrib/* appdir/Cryptomator diff --git a/dist/win/build.ps1 b/dist/win/build.ps1 index 04e08f32f..7caeb2195 100644 --- a/dist/win/build.ps1 +++ b/dist/win/build.ps1 @@ -177,7 +177,7 @@ $javaOptions = @( --app-version "$semVerNo.$revisionNo" ` --resource-dir resources ` --icon resources/$AppName.ico ` - --add-launcher "Debug_${AppName}=$buildDir\debug-launcher.properties" ` + --add-launcher "${AppName}Debug=$buildDir\debug-launcher.properties" ` @javaOptions if ($LASTEXITCODE -ne 0) {