Skip to content

Commit

Permalink
CI: fix mega-melt absolute directory logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Sep 30, 2024
1 parent e769a91 commit 036d78b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ test -f "$pom" || die 'Where is pom.xml?!'
generateMegaMeltScript="$dir/generate-mega-melt.py"
filterBuildLogScript="$dir/filter-build-log.py"

megaMeltDir=$(cd "$dir/../target/mega-melt" && pwd)
megaMeltDir="$dir/../target/mega-melt"
megaMeltDir=$(mkdir -p "$megaMeltDir" && cd "$megaMeltDir" && pwd)
pomParent="$megaMeltDir/../pom.xml"
versionSwapLog="$megaMeltDir/version-swap.log"
dependencyTreeLog="$megaMeltDir/dependency-tree.log"
Expand Down

0 comments on commit 036d78b

Please sign in to comment.