- Timestamp:
- 07/02/2009 16:34:46 (3 years ago)
- Location:
- branches/confman-1.9
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
abspath.in (modified) (1 prop)
-
conflock.in (modified) (1 prop)
-
confmanlib.sh.in (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/confman-1.9
-
branches/confman-1.9/abspath.in
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/confman-1.9/conflock.in
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/confman-1.9/confmanlib.sh.in
- Property svn:mergeinfo changed
/trunk/confmanlib.sh.in merged: 376
r375 r377 770 770 # Returns the revision of the last commit or install operation on stdout 771 771 function conf_sysrev { 772 cut -d ':' -f 2 $REPO_ACTION 772 if [ -f "$REPO_ACTION" ]; then 773 cut -d ':' -f 2 $REPO_ACTION 774 else 775 echo 0 776 fi 773 777 } 774 778 775 779 # Returns the last action of the repository on stdout 776 780 function conf_lastact { 777 cut -d ':' -f 1 $REPO_ACTION 781 if [ -f "$REPO_ACTION" ]; then 782 cut -d ':' -f 1 $REPO_ACTION 783 else 784 echo none 785 fi 778 786 } 779 787 - Property svn:mergeinfo changed
Note: See TracChangeset
for help on using the changeset viewer.
