summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/bin/emcc
blob: e2b822262187a318bf596068aedc18bcffb0f8d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

skip=0

for arg; do
  shift
  [ "$skip" = "1" ] && skip=0 && continue
  [ "$arg" = "-arch" ] && skip=1 && continue
  set -- "$@" "$arg"
done

emcc $@