diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/cleanup-prebuilt-dir.sh | 2 | ||||
-rwxr-xr-x | contrib/publish-prebuilt-dir.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cleanup-prebuilt-dir.sh b/contrib/cleanup-prebuilt-dir.sh index fb21002cd..5553fb467 100755 --- a/contrib/cleanup-prebuilt-dir.sh +++ b/contrib/cleanup-prebuilt-dir.sh @@ -3,7 +3,7 @@ set -e [ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1 -# make sure that the prebuilt directoy is clean +# make sure that the prebuilt directory is clean # before building # this script is part of the make prebuilt cd prebuilt diff --git a/contrib/publish-prebuilt-dir.sh b/contrib/publish-prebuilt-dir.sh index d3e47b964..fcf7ecee8 100755 --- a/contrib/publish-prebuilt-dir.sh +++ b/contrib/publish-prebuilt-dir.sh @@ -7,7 +7,7 @@ COMMIT=$(git rev-parse --verify HEAD) MSG="built from ${COMMIT}" -# after buliding process has copy everything into +# after building process has copy everything into # the prebuilt folder cd prebuilt git commit -m "$MSG" -a |