Copy only the binary files to a staging folder and dedupe binaries with the same name in the process. (#178)

This commit is contained in:
Xin Shi 2022-10-10 10:06:58 -07:00 коммит произвёл GitHub
Родитель 19bf547f15
Коммит bc6fb62d01
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -32,9 +32,10 @@ echo "Processing {$1}"
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd "$parent_path"
if [ -d infer-staging ]; then rm -Rf infer-staging; fi
mkdir infer-staging
echo -e "Copying binaries to a staging folder...\n"
cp -r "$1" infer-staging
find "$1" -name '*.dll' -o -name '*.pdb' | xargs -r cp -n -t infer-staging
# Run InferSharp analysis.
echo -e "Code translation started..."