Skip to content

Commit 7226d92

Browse files
committed
quotes moved to please @remram44
1 parent e009857 commit 7226d92

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CMake/cdat_modules_extra/setup_runtime.sh.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ function cleanup {
1010
# which can lead to errors.
1111
if [ -n "${UVCDAT_SETUP_PATH}" ] ; then
1212
if [ "${UVCDAT_SETUP_PATH}" = "${install_prefix}" ] ; then
13-
echo "Nothing to do UVCDAT is already setup at "${UVCDAT_SETUP_PATH} 1>&2
13+
echo "Nothing to do UVCDAT is already setup at: ${UVCDAT_SETUP_PATH}" 1>&2
1414
cleanup
1515
return 0
1616
else
17-
echo "ERROR: UVCDAT setup was previously sourced at "${UVCDAT_SETUP_PATH} 1>&2
17+
echo "ERROR: UVCDAT setup was previously sourced at: ${UVCDAT_SETUP_PATH}" 1>&2
1818
echo "ERROR: There is no need to run setup_runtime manually anymore." 1>&2
1919
echo "ERROR: Open a new shell in order to use a different install location." 1>&2
2020
cleanup
@@ -24,7 +24,7 @@ fi
2424

2525
# Check that the install prefix exists, otherwise stop.
2626
if [ ! -d "${install_prefix}" ] ; then
27-
echo "ERROR: \"${install_prefix}\" is not a directory." 1>&2
27+
echo "ERROR: ${install_prefix} is not a directory." 1>&2
2828
cleanup
2929
return 1
3030
fi
@@ -88,6 +88,6 @@ export UVCDAT_SETUP_PATH="${install_prefix}"
8888
cleanup
8989
echo "Successfully updated your environment to use UV-CDAT" 1>&2
9090
echo "(changes are valid for this session/terminal only)" 1>&2
91-
echo "Version: "${UVCDAT_PROMPT_STRING} 1>&2
92-
echo "Location: "${UVCDAT_SETUP_PATH} 1>&2
91+
echo "Version: ${UVCDAT_PROMPT_STRING}" 1>&2
92+
echo "Location: ${UVCDAT_SETUP_PATH}" 1>&2
9393
return 0

0 commit comments

Comments
 (0)