Skip to content

Commit

Permalink
Fix missing fi in installation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
costashatz committed Aug 26, 2024
1 parent 134e3a3 commit 930b221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/install_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ cd ../..
if [ ! -d "magnum-bindings" ]
then
git clone https://github.com/mosra/magnum-bindings.git
fi
cd magnum-bindings
mkdir build && cd build
cmake .. -DMAGNUM_WITH_PYTHON=ON
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ cd ../..
if [ ! -d "magnum-bindings" ]
then
git clone https://github.com/mosra/magnum-bindings.git
fi
cd magnum-bindings
mkdir build && cd build
cmake .. -DMAGNUM_WITH_PYTHON=ON
make -j
cd src/python
sudo python3 setup.py install


export PATH=/opt/magnum/bin:$PATH
export LD_LIBRARY_PATH=/opt/magnum/lib:$LD_LIBRARY_PATH

Expand Down

0 comments on commit 930b221

Please sign in to comment.