mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
15 lines
151 B
Bash
Executable File
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
|
|
|