diff options
| author | Christian Cleberg <[email protected]> | 2024-07-28 19:59:14 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-07-28 19:59:14 -0500 |
| commit | 3f7570b8d1ab0bc8e70221bac4092aea72b6c9e0 (patch) | |
| tree | df1f784de016edf430e1948912fc8f204dcd7070 | |
| parent | 5d4a1199b51602f64985982c82de9b7c537583c6 (diff) | |
| download | cleberg.net-3f7570b8d1ab0bc8e70221bac4092aea72b6c9e0.tar.gz cleberg.net-3f7570b8d1ab0bc8e70221bac4092aea72b6c9e0.tar.bz2 cleberg.net-3f7570b8d1ab0bc8e70221bac4092aea72b6c9e0.zip | |
fix build target
| -rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/bin/bash -printf "Did you update the 'Recent Blog Posts' section? [yn]" +printf "Did you update the 'Recent Blog Posts' section? [yn] " read answer if [ "$answer" != "${answer#[Yy]}" ] ; then @@ -8,7 +8,7 @@ if [ "$answer" != "${answer#[Yy]}" ] ; then echo "Environment = Production" && \ rm -rf .build/* && \ emacs --script publish.el && \ - rsync -av --delete-before public/* ubuntu:/var/www/cleberg.net/ + rsync -av --delete-before .build/* ubuntu:/var/www/cleberg.net/ else echo "Environment = Development" && \ rm -rf .build/* && \ |
