diff options
-rwxr-xr-x | make-deploy-one.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make-deploy-one.sh b/make-deploy-one.sh index 3e366e3..b85f655 100755 --- a/make-deploy-one.sh +++ b/make-deploy-one.sh @@ -25,6 +25,8 @@ REPOSITORY_ID="jogamp-test-mirror" PLATFORMS=`cat make-platforms.txt | awk '{print $1}'` || exit 1 CURRENT_DIR=`pwd` || exit 1 +PROJECT_LINE=`egrep "^${NAME}\s+" make-projects.txt` || exit 1 + # Determine whether or not the project has native jars NATIVES=`echo "${PROJECT_LINE}" | awk -F: '{print $2}'` || exit 1 NATIVES=`echo "${NATIVES}" | tr -d ' '` || exit 1 |