mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
15 lines
433 B
Bash
Executable file
15 lines
433 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
# bitcoinstats.rb can be found here:
|
|
# https://github.com/saivann/bitcoinstats
|
|
|
|
WORKDIR='/bitcoin.org/stats'
|
|
LOGDIR='build@bitcoinorglog:/var/log/nginx'
|
|
DSTDIR='build@bitcoinorgstats:/var/www/stats'
|
|
|
|
rsync -rtz --delete $LOGDIR/ $WORKDIR/srclogs/
|
|
ruby $WORKDIR/stats.rb
|
|
rsync -rtz --delete $WORKDIR/stats/ $DSTDIR/
|