@echo off
title Iniyal CLI installer
setlocal
rem Double-click installer for Windows. Same drop as the PowerShell one-liner,
rem for people who should not have to find PowerShell first.
if "%INIYAL_ENDPOINT%"=="" set "INIYAL_ENDPOINT=https://iniyal.onwords.in"
echo.
echo   onwords . INIYAL     installing from %INIYAL_ENDPOINT%
echo.
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm %INIYAL_ENDPOINT%/install-iniyal.ps1 | iex"
echo.
pause
endlocal
