diff options
author | dec05eba <dec05eba@protonmail.com> | 2017-12-28 01:28:22 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2017-12-28 01:28:27 +0100 |
commit | da405ce0c1c9c675aee1710917d9d89b7eb34922 (patch) | |
tree | 0e090ca50c76e9b4173cc0f6efdbf10ca096726a | |
parent | bcd3c09fc6f4264108e0e658122515b50db29c77 (diff) |
Change path for install binary
-rwxr-xr-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,9 +3,9 @@ set -e scriptpath="$(dirname "$0")" -mkdir -p "$scriptpath/build/debug" -cd "$scriptpath/build/debug" +mkdir -p "$scriptpath/build/release" +cd "$scriptpath/build/release" cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../../ ninja sudo cp sibs /usr/bin/ -echo "Copied $scriptpath/build/debug/sibs to /usr/bin/sibs" +echo "Copied $scriptpath/build/release/sibs to /usr/bin/sibs" |