From dd8b7f2c7f1509bdd8d7c9d55522eff4491badf1 Mon Sep 17 00:00:00 2001 From: Kenji Miyake Date: Thu, 27 Jan 2022 17:13:13 +0900 Subject: [PATCH] style: fix English Signed-off-by: Kenji Miyake --- .github/workflows/build.yaml | 2 +- .github/workflows/pre-commit.yaml | 2 +- .github/workflows/spell-check.yaml | 2 +- .github/workflows/vcs-import.yaml | 2 +- setup-dev-env.sh | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3224f99039c..439aa517a7e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 82d560e2dd5..0a04ead2f73 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -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. diff --git a/.github/workflows/spell-check.yaml b/.github/workflows/spell-check.yaml index 3d83a2fac7e..43a75891a30 100644 --- a/.github/workflows/spell-check.yaml +++ b/.github/workflows/spell-check.yaml @@ -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 diff --git a/.github/workflows/vcs-import.yaml b/.github/workflows/vcs-import.yaml index 365ea814ea9..c37a4c19204 100644 --- a/.github/workflows/vcs-import.yaml +++ b/.github/workflows/vcs-import.yaml @@ -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 diff --git a/setup-dev-env.sh b/setup-dev-env.sh index c9684ba621a..3009cbd9afe 100755 --- a/setup-dev-env.sh +++ b/setup-dev-env.sh @@ -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 [-y] [-v] [--no-nvidia] # Note: -y option is only for CI. @@ -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