Исправил сборочный скрипт для POSIX систем
This commit is contained in:
parent
112c6153de
commit
6e63814184
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
|||
$game_name = $env:GAME_NAME ?? "game"
|
||||
|
||||
New-Item -ItemType Directory -Force -Path "./build/" | Out-Null
|
||||
tar -cf "./build/$game_name.tar" -C $(Resolve-Path "./game/") *
|
||||
tar -cf "./build/$game_name.tar" -C $(Resolve-Path "./game/") (Get-ChildItem -Path "./game" | Select-Object -ExpandProperty Name)
|
||||
|
||||
$output = "./build/$game_name.exe"
|
||||
[System.IO.File]::Copy("./lovedos/love.exe", $output, $true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue