beautysh: re-format
beautysh is enabled in the openbmc-build-scripts on Bash/Zsh/POSIX-sh
files to have a consistent formatting. Re-run the formatter on the
whole repository.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I584c76da2eb35af2177a97d5cd4b882f9881fb80
diff --git a/tools/convert_ip_to_dummy b/tools/convert_ip_to_dummy
index 79f0f25..880518e 100755
--- a/tools/convert_ip_to_dummy
+++ b/tools/convert_ip_to_dummy
@@ -14,15 +14,15 @@
# Validate arguments.
if [ -z "${ip_addr}" ] ; then
- echo "**ERROR** You must provide an IP address as the first positional" \
- "parameter." >&2
- exit 1
+ echo "**ERROR** You must provide an IP address as the first positional" \
+ "parameter." >&2
+ exit 1
fi
if [ -z "${file_path}" ] ; then
- echo "**ERROR** You must provide a file path as the second positional" \
- "parameter." >&2
- exit 1
+ echo "**ERROR** You must provide a file path as the second positional" \
+ "parameter." >&2
+ exit 1
fi
ip_addr_regex=`echo ${ip_addr} | sed 's/\(\.\)/\\\./g'`