You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
198 B

#!/bin/bash
# ./sh/deploy.sh username ip
set -e
# 1. Build
./sh/build.sh
cd build
make -j8 install
tar -cvf app.tar app
scp app.tar $1@$2:/home/$1/
ssh $1@$2 "cd /home/$1/ && tar -xvf app.tar"