aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: b81a82452ba7e8b7b8ad05f0cf72941538c3c40f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

script_dir=$(dirname "$0")
cd "$script_dir"

[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1

./build.sh
strip ngxc

install -Dm755 "ngxc" "/usr/bin/ngxc"