Skip to content

Commit

Permalink
Fix NoSuchFileException in IP to location example (#883)
Browse files Browse the repository at this point in the history
Fix NoSuchFileException when run `baremaps workflow execute --file examples/ip-to-location/workflow.js`
  • Loading branch information
yagagagaga committed Jun 29, 2024
1 parent 933ca83 commit 091a0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ip-to-location/workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}),
Expand Down

0 comments on commit 091a0e9

Please sign in to comment.