Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Commit e006f3d

Browse files
authored
chore: reformat for 80 columns; fix spacing (#1021)
* chore: reformat for 80 columns; fix spacing shell style guide specifies 80 columns since `echo` adds spaces between its arguments the line that was already split resulted in an extra space: `Verify installed headers created only expected directories.` * add a missing space
1 parent 272b31e commit e006f3d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ci/kokoro/docker/build-in-docker-cmake.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ fi
3232
source "${PROJECT_ROOT}/ci/colors.sh"
3333

3434
echo
35-
echo "${COLOR_YELLOW}Starting docker build $(date) with $(nproc) cores${COLOR_RESET}"
35+
echo "${COLOR_YELLOW}Starting docker build $(date) with $(nproc)" \
36+
"cores${COLOR_RESET}"
3637
echo
3738

3839
echo "================================================================"
@@ -126,16 +127,17 @@ if [[ "${TEST_INSTALL:-}" = "yes" ]]; then
126127

127128
# Verify only the expected directories are created in the install directory.
128129
echo
129-
echo "${COLOR_YELLOW}Verify installed headers created only" \
130-
" expected directories.${COLOR_RESET}"
130+
echo "${COLOR_YELLOW}Verify installed headers created only expected" \
131+
"directories.${COLOR_RESET}"
131132
if comm -23 \
132133
<(find "$HOME/staging/include/google/cloud" -type d | sort) \
133134
<(echo "$HOME/staging/include/google/cloud" ; \
134135
echo "$HOME/staging/include/google/cloud/spanner" ; \
135136
echo "$HOME/staging/include/google/cloud/spanner/internal" ; \
136137
echo "$HOME/staging/include/google/cloud/spanner/mocks" ; \
137138
/bin/true) | grep -q "$HOME"; then
138-
echo "${COLOR_YELLOW}Installed directories do not match expectation.${COLOR_RESET}"
139+
echo "${COLOR_YELLOW}Installed directories do not match" \
140+
"expectation.${COLOR_RESET}"
139141
echo "${COLOR_RED}Found:"
140142
find "$HOME/staging/include/google/cloud" -type d | sort
141143
echo "${COLOR_RESET}"

0 commit comments

Comments
 (0)