ENH: foamPackSource: moved back to bin so can be used externally

This commit is contained in:
mattijs
2011-02-18 13:54:08 +00:00
parent ecf13f23c4
commit c37defa5e2
3 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ echo $timeStamp 2>/dev/null > $packDir/.timeStamp
if [ "$nogit" = true ]
then
echo "pack manually" 1>&2
$toolsDir/foamPackSource $packDir $packFile
foamPackSource $packDir $packFile
else
echo "pack with git-archive" 1>&2
( cd $packDir && git archive --format=tar --prefix=$packDir/ HEAD) > $packBase.tar

View File

@ -101,6 +101,6 @@ fi
# add time-stamp file before packing
echo $timeStamp 2>/dev/null > $packDir/.timeStamp
echo "pack manually" 1>&2
$toolsDir/foamPackSource $packDir $packFile
foamPackSource $packDir $packFile
#------------------------------------------------------------------------------