mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
12 lines
201 B
Bash
12 lines
201 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# rn-nodeify
|
||
|
./node_modules/.bin/rn-nodeify --install --hack;
|
||
|
|
||
|
# symlink for re-natal
|
||
|
if ! [ -f re-natal ]; then
|
||
|
ln -s ./node_modules/re-natal/index.js re-natal;
|
||
|
else
|
||
|
echo "exists"
|
||
|
fi
|