mirror of
https://github.com/clearlinux/cve-check-tool.git
synced 2026-08-18 19:35:54 +00:00
2a809956eb
Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
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/."
|