mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
cb2709cef4
* separate components for geth and jail (required for ios app); * status bar for both ios and android * style fixes (including better login screen on Android); * internal re-natal package Former-commit-id: 47b3e7fe089a247aa9a670af45412496a1006f35
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#!/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
|