Skip to content

Commit 782b172

Browse files
committed
Fix typos
1 parent d826e82 commit 782b172

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

installer/tue-install-impl.bash

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ function _remove_old_target_dep_recursively
168168
old_dep_dep_file="${TUE_INSTALL_DEPENDENCIES_DIR}"/"${old_dep_target}"
169169
if [[ -f "${old_dep_dep_file}" ]]
170170
then
171-
# Iterate over all depencies of old_dep_target, which is removed.
171+
# Iterate over all dependencies of old_dep_target, which is removed.
172172
while read -r dep_of_old_dep
173173
do
174174
# Actually remove the deps
@@ -183,11 +183,11 @@ function _remove_old_target_dep_recursively
183183
done < "${old_dep_dep_file}"
184184
rm -f "${old_dep_dep_file}"
185185
else
186-
tue-install-debug "[remove_old_dep] No depencies file exist for target: ${old_dep_target}"
186+
tue-install-debug "[remove_old_dep] No dependencies file exist for target: ${old_dep_target}"
187187
fi
188188

189189
tue-install-debug "[remove_old_dep] Uninstalled '${old_dep_target}' as a dependency of '${parent_target}'"
190-
tue-install-info "[remove_old_dep] '${old_dep_target}' has been uninstalled, you can remove it from the workspace or deinstall it in another way"
190+
tue-install-info "[remove_old_dep] '${old_dep_target}' has been uninstalled, you can remove it from the workspace or uninstall it in another way"
191191
return ${error_code}
192192
}
193193

@@ -352,7 +352,7 @@ function tue-install-target
352352
old_deps_removed=$(comm -23 <(echo "${old_deps}") <(echo "${new_deps}"))
353353
if [[ -n ${old_deps_removed} ]]
354354
then
355-
tue-install-debug "Following dropped depedencies need to be removed:\n${old_deps_removed}"
355+
tue-install-debug "Following dropped dependencies need to be removed:\n${old_deps_removed}"
356356
else
357357
tue-install-debug "No dropped dependencies to be removed"
358358
fi
@@ -361,7 +361,7 @@ function tue-install-target
361361
do
362362
# Remove this target from dep-on file of dep
363363
# When the dep-on file is now empty, remove it
364-
# Recurisvely -> Remove it from the dep-on files of its deps
364+
# Recursively -> Remove it from the dep-on files of its deps
365365
tue-install-debug "Going to remove '${dep}' as a dependency"
366366
_remove_old_target_dep_recursively "${target}" "${dep}" || tue-install-error "Something went wrong while removing '${dep}' as a dependency"
367367
done
@@ -1493,7 +1493,7 @@ function tue-install-ros
14931493
local pkg_xml="$ros_pkg_dir"/package.xml
14941494
if [ -f "$pkg_xml" ]
14951495
then
1496-
# Catkin
1496+
# catkin/ament/colcon
14971497
tue-install-debug "Parsing $pkg_xml"
14981498
local deps
14991499
deps=$("$TUE_INSTALL_SCRIPTS_DIR"/parse_package_xml.py "$pkg_xml")
@@ -1674,7 +1674,7 @@ do
16741674
tue-install-debug "[$target] marked as installed after a successful install"
16751675
touch "$TUE_INSTALL_INSTALLED_DIR"/"$target"
16761676
else
1677-
tue-install-debug "[$target] succesfully updated"
1677+
tue-install-debug "[$target] successfully updated"
16781678
fi
16791679
done
16801680

@@ -1746,6 +1746,6 @@ fi
17461746

17471747
TUE_INSTALL_CURRENT_TARGET="main-loop"
17481748

1749-
tue-install-echo "Installer completed succesfully"
1749+
tue-install-echo "Installer completed successfully"
17501750

17511751
return 0

0 commit comments

Comments
 (0)