Skip to content

Commit

Permalink
remove *.pdb
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Jun 26, 2024
1 parent 3dccd0d commit 17df441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql/build_msvc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cp -rf "./runtime_output_directory/Release/." "$release_version_dirpath/"

cd "$release_version_dirpath"

find . -mindepth 1 -maxdepth 1 -name '*test*' -exec rm -f "{}" \;
find . -mindepth 1 -maxdepth 1 \( -name '*test*' -or -name '*.pdb' \) -exec rm -f "{}" \;
find . -mindepth 1 -maxdepth 1 \( ! -name "mysql*" -and ! -name "lib*" \) -exec rm -f "{}" \;

{ printf '### %s
Expand Down

0 comments on commit 17df441

Please sign in to comment.