Skip to content

Commit

Permalink
Fixed symbolic link to mrv3 (which was used for testing) instead of m…
Browse files Browse the repository at this point in the history
…rv2.
  • Loading branch information
ggarra13 committed Aug 7, 2023
1 parent 7910d3f commit 6143646
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions etc/build_end.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ if [[ $KERNEL != *Msys* ]]; then
chmod a+x $PWD/$BUILD_DIR/install/bin/mrv2.sh
if [ -d ~/bin ] && [ -w ~/bin ]; then
if [[ $CMAKE_BUILD_TYPE == Debug ]]; then
rm -f ~/bin/mrv3-dbg
ln -s $PWD/$BUILD_DIR/install/bin/mrv2.sh ~/bin/mrv3-dbg
rm -f ~/bin/mrv2-dbg
ln -s $PWD/$BUILD_DIR/install/bin/mrv2.sh ~/bin/mrv2-dbg
else
rm -f ~/bin/mrv3
ln -s $PWD/$BUILD_DIR/install/bin/mrv2.sh ~/bin/mrv3
rm -f ~/bin/mrv2
ln -s $PWD/$BUILD_DIR/install/bin/mrv2.sh ~/bin/mrv2
fi
fi
fi

0 comments on commit 6143646

Please sign in to comment.