From ebfbd99d7a1703ccf7bb81b7175a00185b002102 Mon Sep 17 00:00:00 2001 From: Ben Rousch Date: Fri, 11 Jan 2013 09:18:13 -0500 Subject: [PATCH] Fix so build can continue if there are no java files to copy Line 551 had a try clause before it copied java files, but often there are no java files to copy. This would cause the build to fail. I removed the try clause so the build will continue whether there are java files to copy or not. --- distribute.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribute.sh b/distribute.sh index 1c12f5c5fe..cdf0e318cc 100755 --- a/distribute.sh +++ b/distribute.sh @@ -548,7 +548,7 @@ function run_distribute() { try cp -a $BUILD_PATH/libs/* libs/$ARCH/ debug "Copy java files from various libs" - try cp -a $BUILD_PATH/java/* src + cp -a $BUILD_PATH/java/* src debug "Fill private directory" try cp -a python-install/lib private/