This is an automated email from the ASF dual-hosted git repository.
apkhmv pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 20a498fb49 IGNITE-22686 Fix ODBC MSI package build (#4058)
20a498fb49 is described below
commit 20a498fb49f4b82f12ca0ea39c55366aa471b3a4
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Tue Jul 9 01:21:49 2024 +0300
IGNITE-22686 Fix ODBC MSI package build (#4058)
---
packaging/odbc/build.gradle | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/packaging/odbc/build.gradle b/packaging/odbc/build.gradle
index 14af8a5daa..e9da730fce 100644
--- a/packaging/odbc/build.gradle
+++ b/packaging/odbc/build.gradle
@@ -45,8 +45,9 @@ def tokens = [
TMP_DIR : "/tmp/ignite3-odbc"
]
+File odbcDll = configurations.odbc.files.find { it.name == "ignite3-odbc.dll" }
def tokensWin = [
- DLL_SRC : configurations.odbc.files.find { it.name ==
"ignite3-odbc.dll"}
+ DLL_SRC : odbcDll != null ? odbcDll.path : ''
]
tasks.register('replacePackageScriptVars', Copy) {