view checkenv.cmd @ 30:9bb5dfef3d2a

Makefile for Linux.
author David Barts <n5jrn@me.com>
date Fri, 17 Apr 2020 10:09:30 -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