From 6ad96fe8ca319f7ae80cd92d9704b9fc5ec14f59 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 8 Dec 2022 23:05:11 -0800 Subject: [PATCH] Use set --- .github/workflows/build.yml | 3 ++- Makefile.win | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1cd2582..b37e91c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,5 +56,6 @@ jobs: nmake /NOLOGO /F Makefile.win nmake /NOLOGO /F Makefile.win install nmake /NOLOGO /F Makefile.win installcheck - nmake /NOLOGO /F Makefile.win prove_installcheck PROVE=prove + set PROVE=prove + nmake /NOLOGO /F Makefile.win prove_installcheck shell: cmd diff --git a/Makefile.win b/Makefile.win index b473714..42b0cb7 100644 --- a/Makefile.win +++ b/Makefile.win @@ -57,4 +57,6 @@ installcheck: prove_installcheck: rm -rf tmp_check - PGPORT=65432 PG_REGRESS="$(BINDIR)\pg_regress" $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) test/t/*.pl + set PGPORT=65432 + set PG_REGRESS="$(BINDIR)\pg_regress" + $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) test/t/*.pl