This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new 4e34dd2182 Fix duplicated path resolution when browsing files with
${PROJECT_HOME} (#6560)
4e34dd2182 is described below
commit 4e34dd21822216ef76343066e98124fd0e934d8b
Author: lance <[email protected]>
AuthorDate: Mon Feb 16 19:59:20 2026 +0800
Fix duplicated path resolution when browsing files with ${PROJECT_HOME}
(#6560)
Signed-off-by: lance <[email protected]>
---
.../org/apache/hop/pipeline/transforms/excelinput/ExcelInputDialog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/plugins/transforms/excel/src/main/java/org/apache/hop/pipeline/transforms/excelinput/ExcelInputDialog.java
b/plugins/transforms/excel/src/main/java/org/apache/hop/pipeline/transforms/excelinput/ExcelInputDialog.java
index 18b5729719..ea71a2dc99 100644
---
a/plugins/transforms/excel/src/main/java/org/apache/hop/pipeline/transforms/excelinput/ExcelInputDialog.java
+++
b/plugins/transforms/excel/src/main/java/org/apache/hop/pipeline/transforms/excelinput/ExcelInputDialog.java
@@ -1054,7 +1054,7 @@ public class ExcelInputDialog extends BaseTransformDialog
{
try {
String path =
wFilenameList.getActiveTableItem().getText(wFilenameList.getActiveTableColumn());
- FileObject fileObject = HopVfs.getFileObject(path);
+ FileObject fileObject =
HopVfs.getFileObject(variables.resolve(path));
SpreadSheetType type =
SpreadSheetType.getSpreadSheetTypeByDescription(wSpreadSheetType.getText());