view checkenv.cmd @ 47:92b60ab62515

Rename so it doesn't look like an M$ word file.
author David Barts <davidb@stashtea.com>
date Mon, 04 May 2020 11:06:44 -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