Skip to content

Commit

Permalink
Remove vctip.exe on installation
Browse files Browse the repository at this point in the history
This should fix issue #23.
  • Loading branch information
mstorsjo committed Feb 15, 2021
1 parent c948610 commit 49461b3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ for arch in x86 x64 arm arm64; do
done
cd ..
done
cd ../bin
# vstip.exe is known to cause problems at some times; just remove it.
# See https://bugs.chromium.org/p/chromium/issues/detail?id=735226 and
# https://github.com/mstorsjo/msvc-wine/issues/23 for references.
for i in $(find . -iname vctip.exe); do
rm $i
done
cd "$DEST"

if [ -d kits/10 ]; then
Expand Down

0 comments on commit 49461b3

Please sign in to comment.