1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
wezterm/ci/build_harfbuzz.sh
2019-02-19 08:59:39 -08:00

15 lines
151 B
Bash
Executable File

#!/bin/bash
set -e
set -x
case "$OSTYPE" in
darwin*)
;;
*)
cd ci/harfbuzz
./autogen.sh --prefix=$PREFIX
make install
;;
esac