Skip to content

Commit

Permalink
Merge pull request #20 from at88mph/link-path-broken
Browse files Browse the repository at this point in the history
Fix for broken links in the path.
  • Loading branch information
at88mph authored May 17, 2024
2 parents 6967cb0 + a1491af commit bf76b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## deployable containers have a semantic and build tag
# semantic version tag: major.minor
# build version tag: timestamp
VERSION="1.1.6"
VERSION="1.1.7"
TAGS="${VERSION} ${VERSION}-$(date -u +"%Y%m%dT%H%M%S")"
unset VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ public String next() {
final Writer writer = new StringWriter();
final StorageItemWriter storageItemWriter = new StorageItemCSVWriter(writer);
final Node nextChild = childNodeIterator.next();
PathUtils.augmentParents(Paths.get(parentPath.toString(), nextChild.getName()), nextChild);

try {
// Check the translated storage item's URI first to handle an exception.
final StorageItem storageItem = storageItemFactory.translate(nextChild);

PathUtils.augmentParents(Paths.get(parentPath.toString(), nextChild.getName()), nextChild);
storageItemWriter.write(storageItem);
} catch (URISyntaxException uriSyntaxException) {
LOGGER.error("Cannot create a URI from node {}. Skipping...",
Expand Down

0 comments on commit bf76b33

Please sign in to comment.