Fix script indent to 4 spaces
[releng/global-jjb.git] / shell / maven-fetch-metadata.sh
index 4696451..270056f 100644 (file)
@@ -8,14 +8,18 @@
 # which accompanies this distribution, and is available at
 # http://www.eclipse.org/legal/epl-v10.html
 ##############################################################################
-
+echo "---> maven-fetch-metadata.sh"
 # Uses wget to fetch a project's maven-metadata.xml files from a Maven repository.
 
 # Check for "-f" maven param, indicating a change in pom location.
 pom_path="pom.xml"
 file_path=$(echo $MAVEN_PARAMS | grep -E "\-f \S+" | awk '{ print $2 }')
 if [ ! -z $file_path ]; then
-    pom_path="$file_path/pom.xml"
+    if [ -d $file_path ]; then
+        pom_path="$file_path/pom.xml"
+    else
+        pom_path="$file_path"
+    fi
 fi
 
 # Ensure we fail the job if any steps fail.