Minor fix in Windows deployment script

This commit is contained in:
Matthias Koefferlein 2019-11-13 23:23:44 +01:00
parent f768d012e5
commit 4ae71075ed
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ while [ "$new_libs" != "" ]; do
for l in $libs; do
if [ -e $mingw_inst/bin/$l ] && ! [ -e $l ]; then
echo "Copying binary installation partial $mingw_inst/bin/$l -> $$l .."
echo "Copying binary installation partial $mingw_inst/bin/$l -> $l .."
cp $mingw_inst/bin/$l $l
new_libs="$new_libs $l"
fi