ソースを参照

change name of debug launcher to not confuse users

Armin Schrenk 3 ヶ月 前
コミット
3244b66c1c
2 ファイル変更2 行追加2 行削除
  1. 1 1
      .github/workflows/win-exe.yml
  2. 1 1
      dist/win/build.ps1

+ 1 - 1
.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 "CryptomatorDebug=dist/win/debug-launcher.properties"
+          --add-launcher "Debug_Cryptomator=dist/win/debug-launcher.properties"
       - name: Patch Application Directory
         run: |
           cp dist/win/contrib/* appdir/Cryptomator

+ 1 - 1
dist/win/build.ps1

@@ -175,7 +175,7 @@ if ($clean -and (Test-Path -Path $appPath)) {
 	--java-options "-Dcryptomator.buildNumber=`"msi-$revisionNo`"" `
 	--resource-dir resources `
 	--icon resources/$AppName.ico `
-	--add-launcher "${AppName}Debug=$buildDir\debug-launcher.properties" `
+	--add-launcher "Debug_${AppName}=$buildDir\debug-launcher.properties" `
 
 if ($LASTEXITCODE -ne 0) {
     Write-Error "jpackage Appimage failed with exit code $LASTEXITCODE"