From: Magnus Jacobsson Date: Thu, 7 Oct 2021 18:19:18 +0000 (+0200) Subject: CI: avoid BOM in COLLECTION file in windows build jobs X-Git-Tag: 2.49.2~18^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7346c95b2e7ff4b6a8f45755fe7607b9c20c4d2;p=graphviz CI: avoid BOM in COLLECTION file in windows build jobs --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 43424f742..e5a0c8541 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -154,7 +154,8 @@ portable-source: - cat metrics.txt # avoid BOM in GRAPHVIZ_VERSION file - python gen_version.py | Out-File GRAPHVIZ_VERSION -Encoding ascii - - python gen_version.py --collection > COLLECTION + # avoid BOM in COLLECTION file + - python gen_version.py --collection | Out-File COLLECTION -Encoding ascii # Package - $Env:GV_VERSION=$( cat GRAPHVIZ_VERSION ) - >-