File size: 633 Bytes
c7d34c1
 
 
 
f250aec
c7d34c1
 
 
f250aec
c7d34c1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@echo off
setlocal

cd /d "%~dp0"
title Visual Journal Customer Package

echo.
echo ========================================
echo Visual Journal Customer Package
echo ========================================
echo.

where powershell >nul 2>nul
if errorlevel 1 (
    echo [ERROR] PowerShell was not found. Cannot create the zip package.
    echo.
    pause
    exit /b 1
)

powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\package-customer.ps1"
if errorlevel 1 (
    echo.
    echo [ERROR] Failed to create customer package.
    echo.
    pause
    exit /b 1
)

echo.
echo [DONE] Customer package created.
echo.
pause