view checkenv.cmd @ 58:6b300da7d800

Update Readme, add License.
author David Barts <davidb@stashtea.com>
date Tue, 12 May 2020 16:23:43 -0700
parents cd2ca4727b7f
children
line wrap: on
line source

@echo off
SETLOCAL EnableDelayedExpansion

for %%i in (%*) do (
	if "!%%i!"=="" (
		echo ERROR: %%i not set
		exit/b 1
	)
)

exit/b 0