Skip to content

Commit

Permalink
node-16.15.0-0: List files in shell instead of subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
pmenzel committed May 13, 2022
1 parent b571f45 commit ee007e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-16.15.0-0.build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ cd ${PKG}-v${VERSION}
make
make install

for i in `ls ${PREFIX}/bin`; do
ln -sv ${PREFIX}/bin/${i}{,-${VERSION}}
for i in ${PREFIX}/bin/*; do
ln -sv ${i}{,-${VERSION}}
done

exit

0 comments on commit ee007e7

Please sign in to comment.