We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d162870 commit 1cc5c75Copy full SHA for 1cc5c75
deploy.sh
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
3
# Currently setup.sh only fetches pandoc and magick, should it download cosmo execs like on windows if somehow missing?
4
-if ! command -v git"$GITEXT" >/dev/null || ! command -v touch >/dev/null ; then
+if ! command -v cp >/dev/null || ! command -v git"$GITEXT" >/dev/null || ! command -v touch >/dev/null ; then
5
if [ "$OS" = Windows_NT ]; then
6
printf "Required binaries are missing, please run setup.bat to acquire them\n"
7
fi
@@ -20,6 +20,7 @@ git"$GITEXT" -C output/ rm -rq .
20
21
touch output/.nojekyll
22
printf "programmingclub.com.au" > output/CNAME
23
+cp templates/robots.txt output/robots.txt
24
. ./build.sh
25
git"$GITEXT" -C output/ add .
26
templates/robot.txt renamed to templates/robots.txt
0 commit comments