Skip to content

Commit

Permalink
python file symlinks in compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten authored Jan 16, 2025
1 parent 8de501a commit e170609
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,11 @@ for file in $PREFIX/opt/emsdk/upstream/emscripten/*; do
echo "Linking $file"
ln -sf $file $PREFIX/bin/
fi

# Check if the ends with .py
if [[ $file == *.py ]]; then
# Create a symbolic link in the $PREFIX/bin directory
echo "Linking $file"
ln -sf $file $PREFIX/bin/
fi
done

0 comments on commit e170609

Please sign in to comment.