713ad294550b5a02a84247c1438e799cea0b911e
max
  Fri Mar 31 01:18:25 2023 -0700
changes to kent-core, adding tags, see https://github.com/ucscGenomeBrowser/kent-core/issues/1

diff --git build/kent-core/makeKentCore build/kent-core/makeKentCore
index 6816c62..df8df63 100755
--- build/kent-core/makeKentCore
+++ build/kent-core/makeKentCore
@@ -1,24 +1,27 @@
 #!/bin/bash
 set -e -o pipefail
 # creates ~/kent-core and fills it with files from the current dir
 if [ ! -e src/codelog.c ] ; then
         echo this script must be run from a clean kent/ directory checkout.
         exit 1
 fi
 if [ ! -e ~/kent-core ] ; then
         echo Please clone the kent-core repo first:
         echo "cd && git clone git@github.com:ucscGenomeBrowser/kent-core.git"
         exit 1
 fi
 cd src
 make clean -j40
 cd ..
 rsync -avzp --filter "merge build/kent-core/makeKentCore.rules" ./ ~/kent-core/ --prune-empty-dirs --delete
 cp src/tagStorm/LICENSE ~/kent-core/
 cp build/kent-core/README.md ~/kent-core/
-echo You can now run: "cd ~/kent-core && git add -A && git commit -m 'all changes of current release' && git push"
+version=`git describe --tags | cut -d_ -f1`
+echo You can now run: "cd ~/kent-core && git add -A && git commit -m 'release '$version && git tag $version && git push --tags"
 #not automating this just yet, as this script is new:
 #cd ~/kent-core/
 #git add -A
 #git commit -m 'all changes of current release'
-##git push
+#version=`git describe --tags | cut -d_ -f1`
+#git tag $version
+##git push --tags