This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
The following commit(s) were added to refs/heads/main by this push:
new 091a0e98 Fix NoSuchFileException in IP to location example (#883)
091a0e98 is described below
commit 091a0e98b4354dbac05213158129388926904060
Author: yagagagaga <[email protected]>
AuthorDate: Sun Jun 30 04:35:50 2024 +0800
Fix NoSuchFileException in IP to location example (#883)
Fix NoSuchFileException when run `baremaps workflow execute --file
examples/ip-to-location/workflow.js`
---
examples/ip-to-location/workflow.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/ip-to-location/workflow.js
b/examples/ip-to-location/workflow.js
index 4de60503..905b304a 100644
--- a/examples/ip-to-location/workflow.js
+++ b/examples/ip-to-location/workflow.js
@@ -70,7 +70,7 @@ export default {"steps": [
return {
type: "DecompressFile",
source: `downloads/${nic.filename}.gz`,
- target: "archives/ripe.db",
+ target: `archives/${nic.filename}`,
compression: "gzip"
}
}),