mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +01:00
Pass the quoted script path to PowerShell using `-File`. This ensures the path is treated as a string rather than a command, and correctly handles file paths that contain spaces, unblocking integration tests. Add logging to autobuild.cmd for easier debugging.
5 lines
172 B
Batchfile
5 lines
172 B
Batchfile
@echo off
|
|
rem All of the work is done in the PowerShell script
|
|
echo "Running PowerShell script at '%~dp0autobuild-impl.ps1'"
|
|
powershell.exe -File "%~dp0autobuild-impl.ps1"
|