Skip to content

Commit c4c00ed

Browse files
fixing echo statement (#647)
1 parent 82005a0 commit c4c00ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

node_management/manage_supra_nodes.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ function update_config_toml() {
608608
# Ensure that the settings file already exits. The user is expected to run `setup` before `update`.
609609
# If they have done this, then they must have set `HOST_SUPRA_HOME` incorrectly.
610610
if ! [ -f "$config_toml" ]; then
611-
epoch "$config_toml does not exist. Please ensure that you have set <host_supra_home> correctly." >&2
611+
echo "$config_toml does not exist. Please ensure that you have set <host_supra_home> correctly." >&2
612612
exit 3
613613
fi
614614

@@ -626,7 +626,7 @@ function update_smr_settings_toml() {
626626
# Ensure that the settings file already exits. The user is expected to run `setup` before `update`.
627627
# If they have done this, then they must have set `HOST_SUPRA_HOME` incorrectly.
628628
if ! [ -f "$smr_settings" ]; then
629-
epoch "$smr_settings does not exist. Please ensure that you have set <host_supra_home> correctly." >&2
629+
echo "$smr_settings does not exist. Please ensure that you have set <host_supra_home> correctly." >&2
630630
exit 3
631631
fi
632632

0 commit comments

Comments
 (0)