13 lines
379 B
Batchfile
13 lines
379 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo EasyStream Continuous Delivery
|
|
echo Timer Mode (Every 5 Minutes)
|
|
echo ========================================
|
|
echo.
|
|
echo Starting timer-based auto-commit...
|
|
echo Will check for changes every 5 minutes
|
|
echo Press Ctrl+C to stop
|
|
echo.
|
|
powershell -ExecutionPolicy Bypass -NoProfile -File "%~dp0start-cd.ps1" start
|
|
pause
|