view checkenv.cmd @ 27:ee580450d45a

More of the Great Renaming.
author davidb
date Thu, 16 Apr 2020 20:01:13 -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