mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 12:43:52 +01:00
17 lines
226 B
Bash
Executable File
17 lines
226 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
TARGET=ezfio
|
|
|
|
function _install()
|
|
{
|
|
cd ..
|
|
QP_ROOT=$PWD
|
|
cd -
|
|
rm -rf ${QP_ROOT}/EZFIO
|
|
cd ${BUILD}/config || return 1
|
|
cd -
|
|
mv ${BUILD} ${QP_ROOT}/install/EZFIO || return 1
|
|
}
|
|
|
|
source scripts/build.sh
|