blob: 6ad6b120d7b99a0580d711921eb9d2f2c9c1bdd1 [file] [log] [blame]
#!/bin/bash
# if you're looking at this in dependencies/linux, please note it's a symbolic
# link to dependencies/macosx/get_harfbuzz.sh if changes need to be made here we
# should let these two scripts diverge.
set -e
if [ -z "${DEPENDENCIES}" ]; then
echo "DEPENDENCIES env variable must be set. This script is usually called by other scripts."
exit 1
fi
pushd $DEPENDENCIES
if [ ! -d harfbuzz ]; then
echo "Cloning Harfbuzz."
git clone https://github.com/harfbuzz/harfbuzz
cd harfbuzz
git checkout 858570b1d9912a1b746ab39fbe62a646c4f7a5b1 .
fi