diff --git a/scripts/alias-create b/scripts/alias-create index c1ab988..af7edeb 100755 --- a/scripts/alias-create +++ b/scripts/alias-create @@ -2,10 +2,10 @@ . "$GVM_ROOT/scripts/functions" [[ $1 != "" ]] || - display_fatal "Please specifiy the alias name" + display_fatal "Please specify the alias name" [[ $2 != "" ]] || - display_fatal "Please specifiy the go version name" + display_fatal "Please specify the go version name" [[ ! -f "$GVM_ROOT/environments/$1" ]] || display_fatal "Alias already exists!" diff --git a/scripts/alias-delete b/scripts/alias-delete index 064dbf6..ab53b94 100755 --- a/scripts/alias-delete +++ b/scripts/alias-delete @@ -2,7 +2,7 @@ . "$GVM_ROOT/scripts/functions" [[ $1 != "" ]] || - display_fatal "Please specifiy the name" + display_fatal "Please specify the name" [[ -f $GVM_ROOT/environments/$1 ]] || display_fatal "Alias doesn't exist!" diff --git a/scripts/env/use b/scripts/env/use index c58ed66..e69207f 100644 --- a/scripts/env/use +++ b/scripts/env/use @@ -1,7 +1,7 @@ #!/usr/bin/env bash function gvm_use() { [[ "$1" != "" ]] || - display_error "Please specifiy the version" || return 1 + display_error "Please specify the version" || return 1 local VERSION=$1 fuzzy_match=$($LS_PATH "$GVM_ROOT/gos" | $SORT_PATH | $GREP_PATH "$1" | $HEAD_PATH -n 1 | $GREP_PATH "$1") if [[ "$?" != "0" ]]; then diff --git a/scripts/pkgset-create b/scripts/pkgset-create index b2c8025..20eea82 100755 --- a/scripts/pkgset-create +++ b/scripts/pkgset-create @@ -2,7 +2,7 @@ . "$GVM_ROOT/scripts/functions" [[ $1 != "" ]] || - display_fatal "Please specifiy the name" + display_fatal "Please specify the name" target_top=$GVM_ROOT target_set_name=$1 diff --git a/scripts/pkgset-delete b/scripts/pkgset-delete index 1937282..b12225f 100755 --- a/scripts/pkgset-delete +++ b/scripts/pkgset-delete @@ -5,7 +5,7 @@ display_fatal "No Go version selected" [[ $1 != "" ]] || - display_fatal "Please specifiy the name" + display_fatal "Please specify the name" target_top=$GVM_ROOT target_set_name=$1 diff --git a/scripts/uninstall b/scripts/uninstall index 587b008..a889d82 100755 --- a/scripts/uninstall +++ b/scripts/uninstall @@ -2,7 +2,7 @@ . "$GVM_ROOT/scripts/functions" [[ "$1" == "" ]] && - display_fatal "Please specifiy the version" + display_fatal "Please specify the version" fuzzy_match=$($LS_PATH "$GVM_ROOT/gos" | $SORT_PATH | $GREP_PATH "$1" | $HEAD_PATH -n 1 | $GREP_PATH "$1") || display_fatal "Invalid version $1"