[BACK]Return to build.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/build.sh between version 1.356 and 1.357

version 1.356, 2021/09/09 15:00:01 version 1.357, 2021/09/17 21:22:38
Line 2337  setup_mkrepro()
Line 2337  setup_mkrepro()
                         t=$(cd "${d}" && git log -1 --format=%ct)                          t=$(cd "${d}" && git log -1 --format=%ct)
                         vcs=git                          vcs=git
                 elif [ -d "${d}.hg" ]; then                  elif [ -d "${d}.hg" ]; then
                         t=$(cd "${d}" &&                          t=$(hg --repo "$d" log -r . --template '{date.unixtime}\n')
                             hg log -r . --template '{date(date, "%s")}\n')                          vcs=hg
                   elif [ -f "${d}.hg_archival.txt" ]; then
                           local stat=$(print_tooldir_program stat)
                           t=$("${stat}" -t '%s' -f '%m' "${d}.hg_archival.txt")
                         vcs=hg                          vcs=hg
                 else                  else
                         bomb "Cannot determine VCS for '$d'"                          bomb "Cannot determine VCS for '$d'"

Legend:
Removed from v.1.356  
changed lines
  Added in v.1.357

CVSweb <webmaster@jp.NetBSD.org>