8 lines
140 B
Bash
8 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/opt/X11/lib/pkgconfig
|
||
|
fi
|
||
|
|
||
|
npm install
|