diff --git a/bin/foamPack b/bin/foamPack index 19bc8f327b..d416ad8cc5 100755 --- a/bin/foamPack +++ b/bin/foamPack @@ -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 diff --git a/bin/tools/foamPackSource b/bin/foamPackSource similarity index 100% rename from bin/tools/foamPackSource rename to bin/foamPackSource diff --git a/bin/foamPackThirdParty b/bin/foamPackThirdParty index bb7c0f6d78..b4c45c6368 100755 --- a/bin/foamPackThirdParty +++ b/bin/foamPackThirdParty @@ -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 #------------------------------------------------------------------------------