X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fcontributor%2Fwebsite-work.itexi;h=24928668aa421d2884f9fac7d7cbdbf7c3571ffc;hb=218ed39bfe682e47cf92ca6abd365f8a41e91ae4;hp=774aa4574685314cff40b3949ff875b9ed21c5f5;hpb=a449f43ea072b331d30fc7a5988ba160cf02f855;p=lilypond.git diff --git a/Documentation/contributor/website-work.itexi b/Documentation/contributor/website-work.itexi index 774aa45746..24928668aa 100644 --- a/Documentation/contributor/website-work.itexi +++ b/Documentation/contributor/website-work.itexi @@ -62,7 +62,7 @@ Get latest source code: @verbatim ### update-git.sh #!/bin/sh -cd $HOME/src/lilypond +cd $HOME/lilypond/lilypond-git git fetch origin git merge origin/master @end verbatim @@ -72,7 +72,7 @@ Check for any updates to trusted scripts / files: @verbatim ### check-git.sh #!/bin/sh -GIT=$HOME/src/lilypond +GIT=$HOME/lilypond/lilypond-git DEST=$HOME/lilypond/trusted-scripts diff -u $DEST/website.make $GIT/make/website.make diff -u $DEST/lilypond-texi2html.init $GIT/Documentation/lilypond-texi2html.init @@ -90,7 +90,7 @@ If the changes look ok, make them trusted: @verbatim ### copy-from-git.sh #!/bin/sh -GIT=$HOME/src/lilypond +GIT=$HOME/lilypond/lilypond-git DEST=$HOME/lilypond/trusted-scripts cp $GIT/make/website.make $DEST/website.make cp $GIT/Documentation/lilypond-texi2html.init $DEST/lilypond-texi2html.init @@ -109,7 +109,8 @@ Build the website: ### make-website.sh #!/bin/sh DEST=$HOME/web/ -cd $HOME/src/build-website +mkdir -p $HOME/lilypond/build-website/ +cd $HOME/lilypond/build-website/ cp $HOME/lilypond/trusted-scripts/website.make . make -f website.make WEBSITE_ONLY_BUILD=1 website