7 lines
132 B
Bash
7 lines
132 B
Bash
#!/bin/sh
|
|
|
|
aws s3 cp s3://catherine-fc-infra/build.tar.gz .
|
|
tar zxf build.tar.gz
|
|
rm build.tar.gz
|
|
cd build
|
|
node server/index.js |