Use double quotes instead of single quotes
[releng/builder.git] / jjb / autorelease / update-validate-autorelease-projects.sh
index e7691cb130a680a8934a53bade38776ca350169f..6dadbcc31f981ae2f14069099df42a1082b816ca 100644 (file)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/bash -l
 # SPDX-License-Identifier: EPL-1.0
 ##############################################################################
 # Copyright (c) 2017 - 2018 The Linux Foundation and others.
@@ -31,18 +31,13 @@ cat > "$YAML_FILE" << EOF
 - project:
     name: autorelease-validate-${STREAM}
     jobs:
-      - '{project-name}-validate-autorelease-{stream}'
+      - "{project-name}-validate-autorelease-{stream}"
     stream: ${STREAM}
     branch: ${BRANCH}
     project-name:
 EOF
 
 for module in "${modules[@]}"; do
-    # TODO: Remove this once mdsal fully becomes an MRI project.
-    if [ "$module" == "mdsal" ] && [ "$BRANCH" == "master" ]; then
-        continue
-    fi
-
     echo "Include $module"
     echo "      - ${module//\//-}:" >> "$YAML_FILE"
     echo "          project: $module" >> "$YAML_FILE"