From: Oleg Broytman Date: Tue, 28 Jan 2025 11:27:28 +0000 (+0300) Subject: Fix minor misspelling X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=01d3bf899b626444b4d928d555563f11ceefe5d2;p=cookiecutter.git Fix minor misspelling --- diff --git a/clone2current b/clone2current index b7cb5d0..8ffff7c 100755 --- a/clone2current +++ b/clone2current @@ -1,7 +1,7 @@ #! /bin/sh if [ ! -d ".git" -a -z "$1" ]; then - echo "Usage: $0 repoistory [directories]" >&2 + echo "Usage: $0 repository [directories]" >&2 exit 1 fi @@ -11,7 +11,7 @@ fi && source_dir="`pwd`" && if [ ! -d ".git" ]; then - echo "$source_dir is not a repoistory (.git isn't found)" >&2 + echo "$source_dir is not a repository (.git isn't found)" >&2 exit 1 fi && diff --git a/publish2web b/publish2web index 933227c..1590b82 100755 --- a/publish2web +++ b/publish2web @@ -1,7 +1,7 @@ #! /bin/sh if [ ! -d ".git" -a -z "$1" ]; then - echo "Usage: $0 repoistory [directories]" >&2 + echo "Usage: $0 repository [directories]" >&2 exit 1 fi @@ -12,7 +12,7 @@ fi && source_dir="`pwd`" && if [ ! -d ".git" ]; then - echo "$source_dir is not a repoistory (.git isn't found)" >&2 + echo "$source_dir is not a repository (.git isn't found)" >&2 exit 1 fi &&