mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 15:50:20 +00:00
14 lines
152 B
Bash
Executable file
14 lines
152 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
cp -r /WoWee-src /WoWee
|
|
|
|
pushd /WoWee
|
|
./build.sh
|
|
popd
|
|
|
|
pushd /WoWee/build
|
|
cmake --install . --prefix=/build
|
|
popd
|