run.sh 240 B

123456789
  1. #!/bin/sh
  2. cd "$(dirname "${0}")" || exit 1
  3. make title='My Photos' base='https://example.org/sub/my-photos'
  4. dst="example.org:/var/www/vhosts/example.org/pages/sub/my-photos"
  5. rsync -avP _build/ "${dst}/"
  6. rsync -avP assets/ "${dst}/assets/"