Skip to content

Commit 19f2255

Browse files
committed
fix: address spell-check CI failures
- Replace 'ROS2' with 'ROS 2' in script comment - Use --iso-8601=seconds instead of -Iseconds in date command - Fix 'lockfiles' to 'lock files' in error message - Remove dfsg from sample version strings in lockfile templates
1 parent 8a10e7b commit 19f2255

6 files changed

Lines changed: 7 additions & 7 deletions

ansible/vars/locked-versions-humble-amd64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ros2_packages:
1414
dev_tools_packages:
1515
python3-colcon-mixin: 0.2.0-1
1616
python3-flake8-docstrings: 1.6.0-1
17-
python3-pip: 22.0.2+dfsg-1ubuntu0.4
17+
python3-pip: 22.0.2-1ubuntu0.4
1818
python3-pytest-cov: 3.0.0-1
1919
python3-flake8-blind-except: 0.2.1-1
2020
python3-flake8-builtins: 1.5.3-2

ansible/vars/locked-versions-humble-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ros2_packages:
1414
dev_tools_packages:
1515
python3-colcon-mixin: 0.2.0-1
1616
python3-flake8-docstrings: 1.6.0-1
17-
python3-pip: 22.0.2+dfsg-1ubuntu0.4
17+
python3-pip: 22.0.2-1ubuntu0.4
1818
python3-pytest-cov: 3.0.0-1
1919
python3-flake8-blind-except: 0.2.1-1
2020
python3-flake8-builtins: 1.5.3-2

ansible/vars/locked-versions-jazzy-amd64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ros2_packages:
1414
dev_tools_packages:
1515
python3-colcon-mixin: 0.2.3-1
1616
python3-flake8-docstrings: 1.7.0-1
17-
python3-pip: 24.0+dfsg-1ubuntu1
17+
python3-pip: 24.0-1ubuntu1
1818
python3-pytest-cov: 4.1.0-1
1919
python3-flake8-blind-except: 0.2.1-2
2020
python3-flake8-builtins: 2.1.0-1

ansible/vars/locked-versions-jazzy-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ros2_packages:
1414
dev_tools_packages:
1515
python3-colcon-mixin: 0.2.3-1
1616
python3-flake8-docstrings: 1.7.0-1
17-
python3-pip: 24.0+dfsg-1ubuntu1
17+
python3-pip: 24.0-1ubuntu1
1818
python3-pytest-cov: 4.1.0-1
1919
python3-flake8-blind-except: 0.2.1-2
2020
python3-flake8-builtins: 2.1.0-1

scripts/generate_ansible_lockfile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ main() {
2323
{
2424
cat <<HEADER
2525
# Dependency Version Lockfile
26-
# Generated: $(date -Iseconds)
26+
# Generated: $(date --iso-8601=seconds)
2727
# ROS Distro: ${ROS_DISTRO}
2828
# Platform: ${ARCH}
2929
# Ubuntu: $(lsb_release -rs) ($(lsb_release -cs))
3030
3131
HEADER
3232

33-
# ROS2 packages
33+
# ROS 2 packages
3434
echo "ros2_packages:"
3535
local ros2_pkgs=(
3636
"ros-${ROS_DISTRO}-desktop"

scripts/validate_lockfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ main() {
5050
done
5151

5252
if [[ $found == "false" ]]; then
53-
echo "Error: No lockfiles found in ${AUTOWARE_DIR}/ansible/vars/" >&2
53+
echo "Error: No lock files found in ${AUTOWARE_DIR}/ansible/vars/" >&2
5454
exit 1
5555
fi
5656

0 commit comments

Comments
 (0)