mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
14 lines
183 B
Bash
14 lines
183 B
Bash
|
#!/bin/bash -x
|
||
|
|
||
|
TARGET=bats
|
||
|
|
||
|
function _install()
|
||
|
{
|
||
|
cp -R ${BUILD} . || exit 1
|
||
|
cd ../bin
|
||
|
ln -s ../install/${TARGET}/libexec/bats . || return 1
|
||
|
cd -
|
||
|
}
|
||
|
|
||
|
source scripts/build.sh
|