From dfe4da61d86504a62e5db1ce13bd28bd262d1476 Mon Sep 17 00:00:00 2001 From: Ale Martinez Date: Tue, 5 Jan 2021 20:26:35 -0300 Subject: [PATCH] Fix GC_VERSION for tag builds The use of / instead of \ as path separator on cmd script line causes tag builds lack proper version string and report (developer build) [skip travis] --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 996e59d02..cb46c609d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -114,7 +114,7 @@ install: before_build: # Define GC version string, only for tagged builds -- if %APPVEYOR_REPO_TAG%==true echo DEFINES+=GC_VERSION=VERSION_STRING >> src/gcconfig.pri +- if %APPVEYOR_REPO_TAG%==true echo DEFINES+=GC_VERSION=VERSION_STRING >> src\gcconfig.pri # Enable CloudDB - echo CloudDB=active >> src\gcconfig.pri