mirror of
https://github.com/clearlinux/cve-check-tool.git
synced 2026-09-05 21:21:48 +00:00
15 lines
328 B
Bash
Executable File
15 lines
328 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
top_srcdir="${1}"
|
|
top_builddir="${2}"
|
|
|
|
|
|
if [[ -d "${top_builddir}/tests/dummy_install/" ]]; then
|
|
rm -rf "${top_builddir}/tests/dummy_install/"
|
|
fi
|
|
|
|
mkdir -p "${top_builddir}/tests/dummy_install/"
|
|
|
|
find "${top_builddir}/src/plugins/" -name "*.so" | xargs -I{} cp {} "${top_builddir}/tests/dummy_install/."
|