core/tools/deploy

12 lines
202 B
Plaintext
Raw Normal View History

2022-11-30 18:01:06 +01:00
#!/usr/bin/env sh
2022-11-30 23:01:16 +01:00
## args
if [ $# -ge 1 ] ; then target_ssh_handle=$1 && shift ; else target_ssh_handle="gs-monitoring" ; fi
## exec
scp build/heimdall ${target_ssh_handle}:/opt/heimdall/heimdall
2022-11-30 18:01:06 +01:00