mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-24 17:18:09 +00:00
20 lines
254 B
Bash
Executable File
20 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# abort the script if there is a non-zero error
|
|
set -e
|
|
|
|
# show where we are on the machine
|
|
pwd
|
|
|
|
echo $NOW_JSON_CONTENTS > ~/.now.json
|
|
|
|
cd website
|
|
|
|
npm run build
|
|
|
|
NOW=`pwd`/node_modules/.bin/now
|
|
|
|
cd build
|
|
|
|
$NOW --force && sleep 5 && $NOW alias
|