diff options
author | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-03-20 21:19:38 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-03-20 21:19:38 -0700 |
commit | 30473cf8fe13e3c9f2482fc79a05ca96aadeb472 (patch) | |
tree | 38db361fdc16119aae2ab3657d387f9d774c8d82 /www/publish.sh | |
parent | acf62e1b1d4148cebe12ead2349bce4e56cc682f (diff) | |
download | librebootfr-30473cf8fe13e3c9f2482fc79a05ca96aadeb472.tar.gz librebootfr-30473cf8fe13e3c9f2482fc79a05ca96aadeb472.zip |
fix relative paths
Diffstat (limited to 'www/publish.sh')
-rwxr-xr-x | www/publish.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/publish.sh b/www/publish.sh index 651b8cdf..4e02e9dc 100755 --- a/www/publish.sh +++ b/www/publish.sh @@ -8,7 +8,7 @@ head -n 4 $FILE.md > temp.md # if not homepage, add a link back to the homepage if [ "${FILE}" != "./index" ]; then - printf "[Go back to homepage](index.md)\n\n" >> temp.md + printf "[Go back to homepage](/index.md)\n\n" >> temp.md fi #read rest of file |