Make sure that jjb-cleanup.sh allows unbound vars
[releng/global-jjb.git] / shell / deploy-maven-file.sh
index dfb9a5a..e5bf050 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/bash -l
 # SPDX-License-Identifier: EPL-1.0
 ##############################################################################
 # Copyright (c) 2017 The Linux Foundation and others.
@@ -39,11 +39,13 @@ mkdir -p "$WORKSPACE/archives"
 
 while IFS="" read -r file
 do
+    file_size=$(stat --printf="%s" "${file}")
+    echo "Deploy ${file##*/} with ${file_size} bytes."
     lftools deploy maven-file "$MAVEN_REPO_URL" \
                               "$REPO_ID" \
                               "$file" \
                               -b "$MVN" \
                               -g "$GROUP_ID" \
-                              -p "$MAVEN_PARAMS $MAVEN_OPTIONS" \
+                              -p "$MAVEN_OPTIONS $MAVEN_PARAMS" \
                               |& tee "$DEPLOY_LOG"
-done < <(find "$UPLOAD_FILES_PATH" -type f -name "*")
+done < <(find "$UPLOAD_FILES_PATH" -xtype f -name "*")