- change autogenerated folder to autodocs/httpyac - renamed many environment variables - add config section to env template to manage different apps - cleanup bruno environments for easier automation of env files - add pre-request and post-response scripts from bruno - manage EFTL-specific scripts - add scripts to setup json template - add scripts to update environment files
14 lines
363 B
Batchfile
14 lines
363 B
Batchfile
@echo off
|
|
echo %cmdcmdline% | findstr /i /c:"%~nx0" >NUL && set iscommandline=1
|
|
echo %PSModulePath% | findstr /i /c:"%USERPROFILE%" >NUL && set ispowershell=1
|
|
|
|
cd /D "%~dp0"
|
|
|
|
echo.
|
|
|
|
@pwsh -NoProfile -ExecutionPolicy Bypass -Command .\scripts\update-http-requests-environments.ps1 %*
|
|
|
|
echo.
|
|
|
|
IF DEFINED iscommandline IF NOT DEFINED ispowershell pause
|