Fixed copy of headers to include .hpp files.
This commit is contained in:
parent
a7506471d5
commit
b346befa21
@ -10,7 +10,4 @@ before_install:
|
|||||||
script:
|
script:
|
||||||
- _mocha -R spec integration/regtest.js
|
- _mocha -R spec integration/regtest.js
|
||||||
- _mocha -R spec --recursive
|
- _mocha -R spec --recursive
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- platform/ubuntu
|
|
||||||
|
|
||||||
|
|||||||
@ -16,7 +16,7 @@ copy_header_files () {
|
|||||||
if [[ -d "${artifacts_dir}" && -d "${h_and_a_dir}" && -d "${btc_dir}" ]]; then
|
if [[ -d "${artifacts_dir}" && -d "${h_and_a_dir}" && -d "${btc_dir}" ]]; then
|
||||||
mkdir -p "${artifacts_dir}/include" > /dev/null 2>&1
|
mkdir -p "${artifacts_dir}/include" > /dev/null 2>&1
|
||||||
pushd "${root_dir}"
|
pushd "${root_dir}"
|
||||||
find libbitcoind -name \*.h -print0 | xargs -0 -I{} rsync -R {} "${artifacts_dir}"/include
|
find libbitcoind -type f \( -name "*.h" -or -name "*.hpp" \) -print0 | xargs -0 -I{} rsync -R {} "${artifacts_dir}"/include
|
||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user