Merge pull request #1201 from lr1980/master

correct copy destination to $basedir
This commit is contained in:
Jordan Sissel 2014-04-16 08:19:28 -07:00
commit 9e85a4abd3

View file

@ -53,7 +53,7 @@ case $1 in
exit 1
fi
gzip -dc ${TARGET} | tar -xC $TARGETDIR
cp -R ${TARGETDIR}/$FILEPATH/* . ;; # Copy contents to local directory, adding on top of existing install
cp -R ${TARGETDIR}/$FILEPATH/* $basedir ;; # Copy contents to local directory, adding on top of existing install
*)
echo "Usage: bin/plugin install contrib"
exit 0