From: Alexander Iljin Date: Sun, 11 Mar 2018 10:46:24 +0000 (+0100) Subject: build.cmd: fix cmd script syntax X-Git-Tag: 0.98~154 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=2b1dc5a3766368e40a4ba060a6a4370681825d71 build.cmd: fix cmd script syntax --- diff --git a/build.cmd b/build.cmd index 757bf45f37..6d964ec660 100644 --- a/build.cmd +++ b/build.cmd @@ -3,8 +3,8 @@ setlocal : Check which branch we are on, or just assume master if we are not in a git repository for /f %%z in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%z -if %GIT_BRANCH% =="" ( - GIT_BRANCH = "master" +if not defined GIT_BRANCH ( + set GIT_BRANCH=master ) if "%1"=="/?" (