Changeset 50


Ignore:
Timestamp:
03/29/2006 23:34:03 (6 years ago)
Author:
ccowart
Message:

Updated the syntax for rm

Location:
confman
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • confman/confman

    r46 r50  
    539539 
    540540function remove { 
    541         local file=`abspath "$1"` 
    542         local response 
    543541        if [ -z $1 ] ; then print_usage 1 ; fi 
    544         conf_rm_file $file 
     542        conf_rm_file $* 
    545543} 
    546544 
  • confman/confmanlib.sh

    r49 r50  
    219219 
    220220function conf_rm_file { 
    221   local file=$1 
    222   if [ ! -f $file ] ; then 
    223           echo "Error: No such file or directory: $file" >&2 
    224   fi 
    225   svn rm $myfile 
     221  svn rm $* 
    226222} 
    227223 
Note: See TracChangeset for help on using the changeset viewer.