Skip to content

Commit

Permalink
style: fix English
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <[email protected]>
  • Loading branch information
Kenji Miyake committed Jan 27, 2022
1 parent 63271b7 commit dd8b7f2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest, ARM64]
steps:
- name: Checkout repository
- name: Check out repository
uses: actions/checkout@v2

- name: Run setup script
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- name: Check out repository
uses: actions/checkout@v2

# This can be removed if we'll manage ansible files in another repository.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- name: Check out repository
uses: actions/checkout@v2

- name: Run spell-check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcs-import.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
container: ros:galactic
steps:
- name: Checkout repository
- name: Check out repository
uses: actions/checkout@v2

- name: Install pip for rosdep
Expand Down
6 changes: 3 additions & 3 deletions setup-dev-env.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Setup development environment for Autoware Core/Universe.
# Set up development environment for Autoware Core/Universe.
# Usage: setup-dev-env.sh <installation_type('core' or 'universe')> [-y] [-v] [--no-nvidia]
# Note: -y option is only for CI.

Expand Down Expand Up @@ -44,10 +44,10 @@ ansible_args=()

# Confirm to start installation
if [ "$option_yes" = "true" ]; then
echo -e "\e[36mRun setup in non-interactive mode.\e[m"
echo -e "\e[36mRun the setup in non-interactive mode.\e[m"
else
echo -e "\e[33mSetting up the build environment take up to 1 hour.\e[m"
read -rp "> Are you sure to run setup? [y/N] " answer
read -rp "> Are you sure to run the setup? [y/N] " answer

# Check whether to cancel
if ! [[ ${answer:0:1} =~ y|Y ]]; then
Expand Down

0 comments on commit dd8b7f2

Please sign in to comment.