Changeset 346

Show
Ignore:
Timestamp:
03/22/08 18:10:25 (5 years ago)
Author:
d0nut
Message:

packaging error

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • make_package.sh

    r245 r346  
    3131# create pip.tar 
    3232if [ -d "pip" ]; then 
    33         TAR_STRING="$TAR_STRING *.tar" 
     33        if [$TAR_STRING == ""]; then 
     34                TAR_STRING="$TAR_STRING *.tar" 
     35        fi 
    3436        cd pip 
    3537        tar cvf ../pip.tar * --exclude=*/.svn* 
     
    3941# create templates.tar 
    4042if [ -d "templates" ]; then 
    41         TAR_STRING="$TAR_STRING *.tar" 
     43        if [$TAR_STRING == ""]; then 
     44                TAR_STRING="$TAR_STRING *.tar" 
     45        fi 
    4246        cd templates 
    4347        tar cvf ../templates.tar * --exclude=*/.svn* 
     
    4751# create acptemplates.tar 
    4852if [ -d "acptemplates" ]; then 
    49         TAR_STRING="$TAR_STRING *.tar" 
     53        if [$TAR_STRING == ""]; then 
     54                TAR_STRING="$TAR_STRING *.tar" 
     55        fi 
    5056        cd acptemplates 
    5157        tar cvf ../acptemplates.tar * --exclude=*/.svn*