diff options
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ #!/bin/sh -find . -type f -name '*.md' -exec ./convert.sh {} \; +EMOJI_SEDSTRING=$(./compile_emoji_sedstring.sh) +find . -type f -name '*.md' -exec ./convert.sh {} "$EMOJI_SEDSTRING" \; rsync -zarv --exclude=".git" --exclude="*.md" . root@eug-vs.xyz:/var/www/website |