mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
10 lines
192 B
Batchfile
10 lines
192 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
pushd "%~dp0\.." >nul
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0Commit-PublicWorktree.ps1" %*
|
|
set EXIT_CODE=%ERRORLEVEL%
|
|
popd >nul
|
|
|
|
exit /b %EXIT_CODE%
|