]> git.sur5r.net Git - i3/i3/commitdiff
release.sh: bugfix: take docs from tmpdir, not startdir
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 30 Jul 2015 20:21:48 +0000 (22:21 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 30 Jul 2015 20:21:48 +0000 (22:21 +0200)
release.sh

index 6e305464dc564e9e6ef34a3af3ebabb0a1c6fc8d..c7488726a258baa34c8eef97efa160c8b2ed2436 100755 (executable)
@@ -163,7 +163,7 @@ git commit -a -m "save docs for ${PREVIOUS_VERSION}"
 for i in $(find _docs -maxdepth 1 -and -type f -and \! -regex ".*\.\(html\|man\)$" -and \! -name "Makefile")
 do
        base="$(basename $i)"
-       [ -e "${STARTDIR}/docs/${base}" ] && cp "${STARTDIR}/docs/${base}" "_docs/${base}"
+       [ -e "${TMPDIR}/i3/docs/${base}" ] && cp "${TMPDIR}/i3/docs/${base}" "_docs/${base}"
 done
 
 (cd _docs && make)
@@ -171,7 +171,7 @@ done
 for i in $(find _docs -maxdepth 1 -and -type f -and \! -regex ".*\.\(html\|man\)$" -and \! -name "Makefile")
 do
        base="$(basename $i)"
-       [ -e "${STARTDIR}/docs/${base}" ] && cp "_docs/${base}.html" docs/
+       [ -e "${TMPDIR}/i3/docs/${base}" ] && cp "_docs/${base}.html" docs/
 done
 
 git commit -a -m "update docs for ${RELEASE_VERSION}"