From 15487535d9c28cbb4d649113ac626b8eb4a9d60d Mon Sep 17 00:00:00 2001 From: Alexey Orlov Date: Thu, 7 Jul 2016 09:17:08 +0200 Subject: [PATCH] Changed rm to rm -r in Scripts cleanup --- Tools/make_binary_drop_linux | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tools/make_binary_drop_linux b/Tools/make_binary_drop_linux index e61817202..23369eea2 100755 --- a/Tools/make_binary_drop_linux +++ b/Tools/make_binary_drop_linux @@ -152,9 +152,8 @@ cp -r Examples $baseDropPath echo "Copying Scripts..." >&3 cp -r Scripts $baseDropPath # Remove test related file(s) if exist(s) -set +e -rm $baseDropPath/Scripts/pytest.ini -set -e +rm -f $baseDropPath/Scripts/pytest.ini + # Copy Extras echo "Copying Extras..." >&3