Skip to content

Commit

Permalink
Remove Angle source
Browse files Browse the repository at this point in the history
  • Loading branch information
angelsl committed Aug 17, 2020
1 parent b911f4e commit f30e10f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/build-lambda-grader-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ JOBS=$(nproc) npm rebuild

find node_modules/ -name 'obj.target' -type d -print0 | xargs -0 rm -rf
find node_modules/ -path '*/build/Release/*' -not \( -name '*.so*' -or -name '*.node' \) -print0 | xargs -0 rm -rf
find node_modules/ -name '*.node' -print0 | xargs -0 strip
find node_modules/ \( -name '*.node' -or -name '*.so*' \) -print0 | xargs -0 strip

rm -rf node_modules/gl/angle

mkdir -p lib
NEEDED_LIBS=$(find node_modules -name '*.node' -not -path '*/obj.target/*' -print0 | xargs -0 ldd | grep -oP '^\s+\S+\s=>\s\K/(usr/)?lib\S+')
Expand Down

0 comments on commit f30e10f

Please sign in to comment.