Skip to content

Commit

Permalink
Make symlink relative
Browse files Browse the repository at this point in the history
  • Loading branch information
rubo committed Jul 23, 2023
1 parent 7cb3cbd commit dc26a33
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts/deployment/build-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ do
cp -r configs $output_path/$rid
mkdir $output_path/$rid/keystore

# A temporary symlink to support existing scripts if any
# A temporary symlink for Linux to support existing scripts if any
# To be removed after a few months
if [[ $rid == win* ]]; then ext=".exe"; else ext=""; fi

ln -s $output_path/$rid/nethermind$ext $output_path/$rid/Nethermind.Runner$ext
[[ $rid == linux* ]] && ln -s -r $output_path/$rid/nethermind $output_path/$rid/Nethermind.Runner
done

cd ..
Expand Down

0 comments on commit dc26a33

Please sign in to comment.