diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-04-26 13:07:49 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-04-26 13:07:11 -0400 |
commit | faebd8ca118f6fbf08c783faba796b5ee957ff00 (patch) | |
tree | 6c1fe39962e326599500468d29a044c2d61267ed | |
parent | 653b2b4426cf762f90707c27c3f435142c911ab6 (diff) |
appveyor: Write @PACKAGE_NAME@ to config
-rw-r--r-- | .appveyor.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index ac39fe235b..0c43e61592 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,6 +39,7 @@ after_build: - ps: clcache -z before_test: - ps: ${conf_ini} = (Get-Content([IO.Path]::Combine(${env:APPVEYOR_BUILD_FOLDER}, "test", "config.ini.in"))) +- ps: ${conf_ini} = ${conf_ini}.Replace("@PACKAGE_NAME@", "Bitcoin Core") - ps: ${conf_ini} = ${conf_ini}.Replace("@abs_top_srcdir@", ${env:APPVEYOR_BUILD_FOLDER}) - ps: ${conf_ini} = ${conf_ini}.Replace("@abs_top_builddir@", ${env:APPVEYOR_BUILD_FOLDER}) - ps: ${conf_ini} = ${conf_ini}.Replace("@EXEEXT@", ".exe") |