Skip to content

Commit

Permalink
Remove NodeJS version suffix from Linux binary
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonMrBonnie committed May 15, 2023
1 parent 31493e4 commit 47486de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
cd alt-build && bash alt-release.sh
cd ..
mkdir dist
cp ./out/Release/libnodev2.so.108 dist/libnodev2.so.108
cp ./out/Release/libnodev2.so dist/libnodev2.so
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,7 @@ def configure_node(o):
elif sys.platform.startswith('zos'):
shlib_suffix = '%s.x'
else:
shlib_suffix = 'so.%s'
shlib_suffix = 'so'
if '%s' in shlib_suffix:
shlib_suffix %= node_module_version

Expand Down

0 comments on commit 47486de

Please sign in to comment.