Skip to content

Commit

Permalink
BF for continous integration
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienRietteMTO committed Nov 4, 2024
1 parent 34f73f7 commit 0aaed09
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions bin/INSTALL.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,15 @@ else
cd fxtran
if [ $(git rev-parse HEAD^{commit}) != $(git rev-parse ${fxtran_version}^{commit}) ]; then
rm -f $DIR/fxtran
make clean
set +e; make clean; set -e
git checkout ${fxtran_version}
make clean
set +e; make clean; set -e
compilationNeeded=1
fi
fi
if [ $compilationNeeded -eq 1 ]; then
cd fxtran
set +e
make all
set -e
set +e; make all; set -e

if [ -f bin/fxtran ]; then
echo ""
Expand Down

0 comments on commit 0aaed09

Please sign in to comment.