diff --git a/source/docs/en/1.0.0/developer/build-linux.markdown b/source/docs/en/1.0.0/developer/build-linux.markdown index 8ef9aedf..d4f3d74c 100644 --- a/source/docs/en/1.0.0/developer/build-linux.markdown +++ b/source/docs/en/1.0.0/developer/build-linux.markdown @@ -34,8 +34,9 @@ Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake -Check out the most recent tag in the HandBrake 1.0.x release series. +List available tags in the HandBrake 1.0.x release series, and check out the most recent. + git tag --list | grep ^1\.0\. git checkout refs/tags/$(git tag -l | grep -E '^1\.0\.[0-9]+$' | tail -n 1) Build HandBrake. To build the command line interface only, disable the graphical interface by appending `--disable-gtk`. diff --git a/source/docs/en/1.0.0/developer/build-mac.markdown b/source/docs/en/1.0.0/developer/build-mac.markdown index 98aea07d..b5e363ae 100644 --- a/source/docs/en/1.0.0/developer/build-mac.markdown +++ b/source/docs/en/1.0.0/developer/build-mac.markdown @@ -42,8 +42,9 @@ Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake -Check out the most recent tag in the HandBrake 1.0.x release series. +List available tags in the HandBrake 1.0.x release series, and check out the most recent. + git tag --list | grep ^1\.0\. git checkout refs/tags/$(git tag -l | grep -E '^1\.0\.[0-9]+$' | tail -n 1) You may build and install the additional dependencies using the included script. Feel free to choose a different output path, if desired. diff --git a/source/docs/en/1.0.0/developer/build-windows.markdown b/source/docs/en/1.0.0/developer/build-windows.markdown index b304084b..9337d75c 100644 --- a/source/docs/en/1.0.0/developer/build-windows.markdown +++ b/source/docs/en/1.0.0/developer/build-windows.markdown @@ -59,8 +59,9 @@ Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake -Check out the most recent tag in the HandBrake 1.0.x release series. +List available tags in the HandBrake 1.0.x release series, and check out the most recent. + git tag --list | grep ^1\.0\. git checkout refs/tags/$(git tag -l | grep -E '^1\.0\.[0-9]+$' | tail -n 1) Build the MinGW-w64 toolchain using the included script, where `username` is your user name. Feel free to choose a different output path, if desired.