Fix incorrectly assigned scp_src_repo_url variable
This change fixes scp_src_repo_url variable which was
assigned incorrectly in arm-env.sh. scp_src_repo_url should
get initialized to SCP_SRC_REPO_URL if it is not defined
however latest change which adds arm-env.sh
has broken this assumption.
See "ae11ebfe35c7eba93f935585caa03f56a2782d3b
Add support for environmental settings".
Change-Id: Ie1e9515873f69569d66ef1a7c4283bfadd081118
Signed-off-by: Girish Pathak <girish.pathak@arm.com>
diff --git a/arm-env.sh b/arm-env.sh
index ce40ae3..1152578 100644
--- a/arm-env.sh
+++ b/arm-env.sh
@@ -18,7 +18,7 @@
tf_ci_repo_url="${CI_SRC_REPO_URL:-http://$arm_gerrit_url/pdswinf/ci/pdcs-platforms/platform-ci}"
tf_arm_gerrit_repo="ssh://$arm_gerrit_url:29418/pdcs-platforms/ap/tf-topics.git"
tftf_arm_gerrit_repo="ssh://$arm_gerrit_url:29418/trusted-firmware/tf-a-tests.git"
-scp_src_repo_url="${scp_src_repo_url:-http://$arm_gerrit_url/scp/firmware}"
+scp_src_repo_default="${scp_src_repo_default:-http://$arm_gerrit_url/scp/firmware}"
cc_src_repo_url="${cc_src_repo_url:-https://$arm_gerrit_url/tests/lava/test-definitions.git}"
cc_src_repo_tag="${cc_src_repo_tag:-kernel-team-workflow_2019-09-20}"
scp_tools_src_repo_url="${scp_tools_src_repo_url:-http://$arm_gerrit_url/scp/tools-non-public}"