summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoravenash.thambi <avenash.thambi@fii-usa.com>2021-11-13 04:22:47 +0300
committerMustafa Shehabi <mustafa.shehabi@fii-na.com>2021-11-13 04:53:38 +0300
commit92d0d57948a9b19b1db1bd730dbc17f42bd1c318 (patch)
treeb1eb7d51dbecbc1c67e1a2272cd6ae16004ec91c
parentb4e4716b712ed12612b85493a3a964e02a8c9b81 (diff)
downloadopenbmc-92d0d57948a9b19b1db1bd730dbc17f42bd1c318.tar.xz
meta-fii/meta-kudo: Fix syntax error ampere_power_util.sh file
The ampere_power_util.sh file has a syntax error of missing double quotes in a echo print. This is a follow up to the gerrit commit https://gerrit.openbmc-project.xyz/c/openbmc/openbmc/+/48477 Signed-off-by: Mustafa Shehabi <mustafa.shehabi@fii-na.com> Signed-off-by: avenash.thambi <avenash.thambi@fii-usa.com> Change-Id: Iff734c390507201c2d539dc6468de09a888623c7
-rw-r--r--meta-fii/meta-kudo/recipes-kudo/host/files/ampere_power_util.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-fii/meta-kudo/recipes-kudo/host/files/ampere_power_util.sh b/meta-fii/meta-kudo/recipes-kudo/host/files/ampere_power_util.sh
index 511c1217e..19ccc0e8e 100644
--- a/meta-fii/meta-kudo/recipes-kudo/host/files/ampere_power_util.sh
+++ b/meta-fii/meta-kudo/recipes-kudo/host/files/ampere_power_util.sh
@@ -102,7 +102,7 @@ power_button() {
elif [[ "$current_time" -ge "(($press_time + 5))" ]]; then
power_off
else
- echo "Button press did not match interval.
+ echo "Button press did not match interval."
fi
rm "/run/openbmc/power-button"
else