Skip to content

Commit

Permalink
docs(bash): fix spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenj committed Nov 27, 2023
1 parent 2523128 commit 740b015
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion earthly/bash/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ builder:

# Copy our common scripts so we can use them inside the container.
# Internally in the repo we use a symlink to accomplish this, but Earthly
# Will only copy the symlink and not what it references, so we nned to
# Will only copy the symlink and not what it references, so we need to
# manually copy what it references. This enables the script to work
# both in-repo and in-ci here.
COPY --dir ../../utilities/scripts+bash-scripts/include .
Expand Down
2 changes: 1 addition & 1 deletion earthly/bash/check-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rc_lint=$?
status "${rc}" "Duplicated Bash Scripts" \
[ "${rc_dup}" == 0 ]
rc=$?
status "${rc}" "Lint Errros in Bash Scripts" \
status "${rc}" "Lint Errors in Bash Scripts" \
[ "${rc_lint}" == 0 ]
rc=$?

Expand Down
2 changes: 1 addition & 1 deletion earthly/docs/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ deps:
COPY --dir scripts /scripts
# Copy our common scripts so we can use them inside the container.
# Internally in the repo we use a symlink to accomplish this, but Earthly
# Will only copy the symlink and not what it references, so we nned to
# Will only copy the symlink and not what it references, so we need to
# manually copy what it references. This enables the script to work
# both in-repo and in-ci here.
COPY --dir ../../utilities/scripts+bash-scripts/include /scripts
Expand Down
3 changes: 1 addition & 2 deletions earthly/rust/scripts/std_checks.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env bash

# cspell: words localfile vendorfile colordiff Naur fmtchk fmtfix rustfmt stdcfgs
# cspell: words nextest
# cspell: words fmtchk fmtfix rustfmt stdcfgs nextest

# This script is run inside the `check` stage for rust projects to perform all
# high level non-compilation checks.
Expand Down
2 changes: 2 additions & 0 deletions utilities/scripts/bash/colors.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

# cspell: words localfile vendorfile colordiff Naur

# shellcheck disable=SC2034 # This file is intended to bo sourced.

BLACK='\033[0;30m'
Expand Down

0 comments on commit 740b015

Please sign in to comment.