10 lines
312 B
Bash
Executable File
10 lines
312 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Building sitestat"
|
|
dub clean
|
|
dub build --build=release --compiler=/opt/ldc2/ldc2-1.33.0-linux-x86_64/bin/ldc2
|
|
|
|
ssh -f root@andrewlalis.com 'systemctl stop sitestat.service'
|
|
scp sitestat root@andrewlalis.com:/opt/sitestat/
|
|
ssh -f root@andrewlalis.com 'systemctl start sitestat.service'
|