-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwin_automator.bat
More file actions
19 lines (19 loc) · 964 Bytes
/
Copy pathwin_automator.bat
File metadata and controls
19 lines (19 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
REM A* -------------------------------------------------------------------
REM B* A simple wrapper script for running automation tasks more smoothly
REM -* without needing to know the exact python interpreter path
REM C* Copyright 2025 by Martin Urban.
REM D* -------------------------------------------------------------------
REM E* It is unlawful to modify or remove this copyright notice.
REM F* -------------------------------------------------------------------
REM G* Please see the accompanying LICENSE file for further information.
REM H* -------------------------------------------------------------------
REM I* Additional authors of this source file include:
REM -*
REM -*
REM -*
REM Z* -------------------------------------------------------------------
if exist .\.venv\Scripts\python.exe (
.\.venv\Scripts\python.exe .\automations\my_automator.py %*
) else (
echo Virtual environment does not exist yet! Please run run_automation.bat init
)