-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.bat
More file actions
35 lines (33 loc) · 975 Bytes
/
Copy pathdeploy.bat
File metadata and controls
35 lines (33 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
rem Project: PHP Gallery
rem Repository: https://github.com/klusik/PHP_gallery
rem
rem File: deploy.bat
rem Module Type: Windows Wrapper Script
rem
rem Purpose:
rem Provides a Windows command wrapper for PHP Gallery tooling.
rem
rem Responsibilities:
rem - Forward command-line arguments to the main script
rem - Keep Windows invocation simple
rem - Ensure deployment packaging continues through the PowerShell workflow
rem - Avoid duplicating script logic
rem
rem Author:
rem Rudolf Klusal
rem
rem Contact:
rem https://github.com/klusik
rem
rem License:
rem MIT License (see LICENSE file in repository)
rem
rem Notes:
rem - Keep comments and docstrings intact when modifying this file.
rem - Prefer small, readable changes over broad rewrites.
rem
rem Last Updated:
rem 2026-05-04
rem This wrapper forwards command-line deployment flags to the PowerShell deploy script.
powershell -ExecutionPolicy Bypass -File "%~dp0scripts\deploy.ps1" %*