hgupdate.cmake.in 421 B

12345678910111213141516
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. cmake_minimum_required(VERSION 3.19)
  4. execute_process(
  5. COMMAND "@hg_EXECUTABLE@" pull
  6. COMMAND_ERROR_IS_FATAL ANY
  7. WORKING_DIRECTORY "@work_dir@"
  8. )
  9. execute_process(
  10. COMMAND "@hg_EXECUTABLE@" update @hg_tag@
  11. COMMAND_ERROR_IS_FATAL ANY
  12. WORKING_DIRECTORY "@work_dir@"
  13. )