Skip to content

Commit

Permalink
Merge pull request #208 from NoamDev/patch-1
Browse files Browse the repository at this point in the history
Supress ls no such file error message
  • Loading branch information
forslund committed Jul 13, 2020
2 parents e70fcd5 + d55f906 commit 2552136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_testsuite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ put_dll_in_bindir()
{
# Portaudio libraries are installed into lib. wine can't find them.
# Copy all libs to ${MIMIC_INSTALL_DIR}/bin
for file in `ls "${MIMIC_INSTALL_DIR}/lib/"*.dll`; do
for file in `ls "${MIMIC_INSTALL_DIR}/lib/"*.dll 2>/dev/null`; do
cp "$file" "${MIMIC_INSTALL_DIR}/bin/"
done
}
Expand Down

0 comments on commit 2552136

Please sign in to comment.