7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DEPLOY_HOST="nixdeploy.bula22.de"
|
|
|
|
rsync -r . ${DEPLOY_HOST}:bula-nixfiles/
|
|
ssh -tA ${DEPLOY_HOST} "cd bula-nixfiles && colmena $@"
|