mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-28 17:10:03 +02:00
31 lines
1.1 KiB
Bash
Executable File
31 lines
1.1 KiB
Bash
Executable File
SERVER=jctbDetectorServer
|
|
MAINDIR=slsDetectorsPackage
|
|
SPECDIR=slsDetectorSoftware/$SERVER
|
|
TMPFILE=gitInfoMoenchTmp.h
|
|
INCLFILE=gitInfoMoench.h
|
|
|
|
|
|
#evaluate the variables
|
|
EVALFILE=../../evalVersionVariables.sh
|
|
source $EVALFILE
|
|
|
|
|
|
#get modified date
|
|
#RDATE1='git log --pretty=format:"%ci" -1'
|
|
RDATE1="find . -type f -exec stat --format '%Y :%y %n' '{}' \; | sort -nr | cut -d: -f2- | egrep -v 'gitInfo|.git|updateGitVersion|.o' | head -n 1"
|
|
RDATE=`eval $RDATE1`
|
|
NEWDATE=$(sed "s/-//g" <<< $RDATE | awk '{print $1;}')
|
|
NEWDATE=${NEWDATE/#/0x}
|
|
|
|
|
|
#get old date from INCLFILE
|
|
OLDDATE=$(more $INCLFILE | grep '#define GITDATE' | awk '{print $3}')
|
|
|
|
|
|
#update INCLFILE if changes
|
|
if [ "$OLDDATE" != "$NEWDATE" ]; then
|
|
echo Path: ${MAINDIR}/${SPECDIR} $'\n'URL: ${GITREPO} $'\n'Repository Root: ${GITREPO} $'\n'Repsitory UUID: ${REPUID} $'\n'Revision: ${FOLDERREV} $'\n'Branch: ${BRANCH} $'\n'Last Changed Author: ${AUTH1}_${AUTH2} $'\n'Last Changed Rev: ${REV} $'\n'Last Changed Date: ${RDATE} > gitInfo.txt
|
|
cd ../../
|
|
./genVersionHeader.sh $SPECDIR/gitInfo.txt $SPECDIR/$TMPFILE $SPECDIR/$INCLFILE
|
|
cd $WD
|
|
fi |