summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarrison Mutai <harrison.mutai@arm.com>2023-03-27 14:18:18 +0100
committerMadhukar Pappireddy <madhukar.pappireddy@arm.com>2023-03-27 15:43:35 +0200
commit65828188996e8a4d93220b9836d95ad0f4d058e7 (patch)
treeb52e8b9ebead3016d2b34fcc4100b216ffa42b5e
parentd008f5db306f7e9c7e33ce4f8e7c363bfee3eed9 (diff)
style: fix erroneous indentation
Change-Id: Id9e93a06db87adba6c902e776b172b70eedac016 Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
-rw-r--r--juno_utils.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/juno_utils.sh b/juno_utils.sh
index e0dd44c7..743e9d5c 100644
--- a/juno_utils.sh
+++ b/juno_utils.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright (c) 2019-2022 Arm Limited. All rights reserved.
+# Copyright (c) 2019-2023 Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
@@ -117,16 +117,16 @@ gen_recovery_image() {
}
gen_juno_yaml() {
- local yaml_file="$workspace/juno.yaml"
- local job_file="$workspace/job.yaml"
+ local yaml_file="$workspace/juno.yaml"
+ local job_file="$workspace/job.yaml"
local payload_type="${payload_type:?}"
bin_mode="$mode" juno_revision="$juno_revision" \
"$ci_root/script/gen_juno_${payload_type}_yaml.sh" > "$yaml_file"
- cp "$yaml_file" "$job_file"
+ cp "$yaml_file" "$job_file"
archive_file "$yaml_file"
- archive_file "$job_file"
+ archive_file "$job_file"
}
juno_aarch32_runtime() {