From 612100463e95481a68ed782b1b671b15d91b85eb Mon Sep 17 00:00:00 2001 From: Stevan Freeborn Date: Sat, 18 Jul 2026 15:29:45 -0500 Subject: [PATCH] build: remove old run.ps1 script --- run.ps1 | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 run.ps1 diff --git a/run.ps1 b/run.ps1 deleted file mode 100644 index 4dc3c38..0000000 --- a/run.ps1 +++ /dev/null @@ -1,18 +0,0 @@ -Write-Host "[Stopping any running chip instances...]" -Stop-Process -Name chip -ErrorAction SilentlyContinue - -Write-Host "[Compiling...]" - -gcc src/main.c src/chip8.c -o ./.bin/chip.exe -Iinclude -Wall -Wextra -lraylib -lopengl32 -lgdi32 -lwinmm - -if ($LASTEXITCODE -ne 0) { - Write-Host "[Failed to compile]"; - exit 1; -} - -Write-Host "[Compiled successfully]"; - -Write-Host "[Running..]" -Write-Host "`n" - -./.bin/chip.exe $args[0]