Skip to content

Commit

Permalink
python file symlinks in compiler [3.1.45] (#1639)
Browse files Browse the repository at this point in the history
* python file symlinks in compiler

* bump version
  • Loading branch information
DerThorsten authored Jan 16, 2025
1 parent 8de501a commit 3afcff2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion recipes/recipes/emscripten_emscripten-wasm32/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ context:
version: 3.1.45

build:
number: 32
number: 33

outputs:
- package:
Expand Down

0 comments on commit 3afcff2

Please sign in to comment.