2009-08-13 11:10:19 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#check if we're on *nix system
|
|
|
|
#write the version.html file
|
|
|
|
|
|
|
|
#don't exit even if a command fails
|
|
|
|
set +e
|
|
|
|
|
|
|
|
if (ls &> /dev/null); then
|
|
|
|
echo "Retroshare Gui version : " > gui/help/version.html
|
|
|
|
if ( /usr/bin/git log -n 1 &> /dev/null); then
|
|
|
|
#retrieve git information
|
|
|
|
echo "Git version : $(git status | grep branch | cut -c 3-) $(git log -n 1 | grep commit)" >> gui/help/version.html
|
|
|
|
fi
|
|
|
|
if ( /usr/bin/git log -n 1 | grep svn &> /dev/null); then
|
|
|
|
#retrieve git svn information
|
2015-04-04 11:37:54 -04:00
|
|
|
echo "Svn version : $(git log -n 1 | awk '/svn/ {print $2}' | head -1)" >> gui/help/version.html
|
2009-08-13 11:10:19 -04:00
|
|
|
elif ( /usr/bin/git log -n 10 | grep svn &> /dev/null); then
|
|
|
|
#retrieve git svn information
|
2015-04-04 11:37:54 -04:00
|
|
|
echo "Svn closest version : $(git log -n 10 | awk '/svn/ {print $2}' | head -1)" >> gui/help/version.html
|
2009-08-13 11:10:19 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if ( /usr/bin/svn info &> /dev/null); then
|
2015-04-04 11:37:54 -04:00
|
|
|
echo "Svn version : $(svn info | awk '/^Revision:/ {print $NF}')" >> gui/help/version.html
|
2009-08-13 11:10:19 -04:00
|
|
|
fi
|
|
|
|
date >> gui/help/version.html
|
|
|
|
echo "" >> gui/help/version.html
|
|
|
|
echo "" >> gui/help/version.html
|
|
|
|
fi
|
|
|
|
echo "version_detail.sh scripts finished"
|
|
|
|
exit 0
|