summaryrefslogtreecommitdiff
path: root/mac/PackDeps.sh
blob: 75359782bc5a1fac266f49ac6d0b859ddecd1eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
if [[ x"${AVG_PATH}" == "x" ]]
then
    echo Please set AVG_PATH before calling this script.
    exit -1 
fi

DEST_PATH=`pwd`
cd $AVG_PATH/deps
tar cjf $DEST_PATH/macdependencies.tar.bz2 tarballs

echo "Done"