Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed Sep 10, 2024
1 parent 58b6a90 commit db1362a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,12 @@ if [ ! -f ./src/scripts/merge_tools/merging/.git ] ; then
git submodule update --init --recursive
fi

(cd ./src/scripts/merge_tools/merging && JAVA_HOME=$GRAALVM_HOME PATH="$JAVA_HOME/bin:$PATH" ./gradlew nativeCompile)
(
cd ./src/scripts/merge_tools/merging
export JAVA_HOME=$GRAALVM_HOME
export PATH="$JAVA_HOME/bin:$PATH"
./gradlew nativeCompile
)

echo "Machine ID: $machine_id"
echo "Number of machines: $num_machines"
Expand Down

0 comments on commit db1362a

Please sign in to comment.