17 lines
286 B
Bash
Executable File
17 lines
286 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
if [[ $(hostname) != "ladd76" ]]; then
|
|
echo >&2 "host $(hostname) != 'ladd76'"
|
|
exit 1
|
|
fi
|
|
|
|
set -eo pipefail
|
|
|
|
git checkout dev
|
|
./sync
|
|
git add .
|
|
git commit
|
|
git push
|
|
ssh lentilz 'cd ~/code/gravity-dev && git add . && git stash && git pull && git apply stash && npm i'
|
|
|