Changeset 53
- Timestamp:
- 03/30/2006 02:16:07 (6 years ago)
- Location:
- confman
- Files:
-
- 2 edited
-
confman (modified) (3 diffs)
-
confmanlib.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
confman/confman
r52 r53 169 169 EOF 170 170 ;; 171 status ) 172 cat <<EOF 173 $MYNAME provides a command-line interface to Rescomp's server 174 configuration management system. 175 176 Usage: 177 $MYNAME status [ working_copy ] 178 179 Look at the status entries for the file or directory specified by working_copy. 180 EOF 181 ;; 171 182 cp ) 172 183 cat <<EOF … … 617 628 done 618 629 fi 630 } 631 632 function status { 633 conf_status $* 619 634 } 620 635 … … 810 825 exit 0 811 826 ;; 812 setup|s * )827 setup|se* ) 813 828 setup $* 829 ;; 830 status|st* ) 831 status $* 814 832 ;; 815 833 create|cr* ) -
confman/confmanlib.sh
r52 r53 44 44 local msg="$2" 45 45 svn commit -F "$msg" ${WORK_PATH}/$module 46 } 47 48 # A way to utilize the svn status feature. 49 function conf_status { 50 svn status $* 46 51 } 47 52 … … 164 169 if [ -f "${chkpath}" ] ; then 165 170 revision=`cat $chkpath` 166 elif [ -z $clock ] ; then # Time checkpoint171 elif [ -z $clock ] ; then # Time checkpoint 167 172 revision="{${date}}" 168 173 else
Note: See TracChangeset
for help on using the changeset viewer.
