mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-07-03 00:41:15 +00:00
Post-launch fixes
This commit is contained in:
parent
a015254f9a
commit
62751a66e6
7 changed files with 21 additions and 16 deletions
|
|
@ -11,6 +11,8 @@ if (Test-Path $buildDir) {
|
|||
Remove-Item "$buildDir\*" -Recurse -Force
|
||||
} else {
|
||||
New-Item -ItemType Directory -Path $buildDir | Out-Null
|
||||
New-Item -ItemType Directory -Path $buildDir\win | Out-Null
|
||||
New-Item -ItemType Directory -Path $buildDir\linux | Out-Null
|
||||
}
|
||||
|
||||
# Step 2: Get version data from GitVersion
|
||||
|
|
@ -38,6 +40,7 @@ if (Test-Path $configFile) {
|
|||
}
|
||||
|
||||
# Step 4: Export the build
|
||||
& $godotPath --headless --export-release "Windows Desktop" "$buildDir\win\$fileName.exe"
|
||||
#& $godotPath --headless --export-release "Windows Desktop" "$buildDir\$fileName.exe"
|
||||
& $godotPath --headless --export-release "Windows Desktop" "$buildDir\win\$fileName.x86_64"
|
||||
|
||||
& $godotPath --headless --export-release "Linux" "$buildDir\linux\$fileName.exe"
|
||||
& $godotPath --headless --export-release "Linux" "$buildDir\linux\$fileName"
|
||||
Loading…
Add table
Add a link
Reference in a new issue