From 6e6381418469ab766a92f45afab48760c30c938b Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Thu, 11 Sep 2025 23:36:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=81=D0=B1=D0=BE=D1=80=D0=BE=D1=87=D0=BD=D1=8B=D0=B9?= =?UTF-8?q?=20=D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?POSIX=20=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 0856d36..357b649 100755 --- a/build.ps1 +++ b/build.ps1 @@ -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)