view checkenv.cmd @ 32:c06edc56669b

Enable vari-sized headings.
author David Barts <davidb@stashtea.com>
date Fri, 24 Apr 2020 14:01:03 -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