Skip to content

Commit

Permalink
prepare-docs: Check out "final" branch by default (#80)
Browse files Browse the repository at this point in the history
Use "master" as source branch (for edit links)

Signed-off-by: Yannick Schaus <github@schaus.net>
  • Loading branch information
ghys authored Jul 8, 2018
1 parent 4998f4d commit 2c12af4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions prepare-docs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
# require "nokogiri"

$docs_repo = "https://github.com/openhab/openhab-docs"
$docs_repo_root = $docs_repo + "/blob/gh-pages"
$docs_repo_root = $docs_repo + "/blob/master"
$docs_repo_branch = "final"
$esh_repo = "https://github.com/eclipse/smarthome"
$esh_repo_root = $esh_repo + "/blob/master/docs/documentation"
$version = nil
Expand All @@ -26,7 +27,7 @@
FileUtils.rm_rf(".vuepress/openhab-docs")

puts ">>> Cloning openhab-docs"
`git clone --depth 1 #{$version ? "--branch #{$version}" : ""} https://github.com/openhab/openhab-docs .vuepress/openhab-docs`
`git clone --depth 1 --branch #{$version ? $version : $docs_repo_branch} https://github.com/openhab/openhab-docs .vuepress/openhab-docs`
end

$esh_features = []
Expand Down

0 comments on commit 2c12af4

Please sign in to comment.