X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b..7f33734e863bf7ba1d1e4f1f1db208450b4cbb2b:/cookbooks/nominatim/templates/default/nominatim-update-source.erb diff --git a/cookbooks/nominatim/templates/default/nominatim-update-source.erb b/cookbooks/nominatim/templates/default/nominatim-update-source.erb index 43a486511..dacb6190e 100644 --- a/cookbooks/nominatim/templates/default/nominatim-update-source.erb +++ b/cookbooks/nominatim/templates/default/nominatim-update-source.erb @@ -9,13 +9,14 @@ date "+%c === Checking for new versions of Nominatim" cd <%= @srcdir %> git fetch origin +git fetch origin -tf -if git diff --exit-code origin/<%= node[:nominatim][:revision] %> >/dev/null; then +if git diff --exit-code <%= node[:nominatim][:revision] %> >/dev/null; then # signal that there are no new updates exit 99 fi -git merge origin/<%= node[:nominatim][:revision] %> +git checkout --detach <%= node[:nominatim][:revision] %> git submodule update cd <%= @builddir %>