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.

15 lines
198 B

2 years ago
  1. #!/bin/bash
  2. # ./sh/deploy.sh username ip
  3. set -e
  4. # 1. Build
  5. ./sh/build.sh
  6. cd build
  7. make -j8 install
  8. tar -cvf app.tar app
  9. scp app.tar $1@$2:/home/$1/
  10. ssh $1@$2 "cd /home/$1/ && tar -xvf app.tar"