Skip to content

Commit

Permalink
Merge pull request #53 from paulrbr-fl/moar-compat
Browse files Browse the repository at this point in the history
scripts: use short options instead of long ones
  • Loading branch information
paulrbr-fl authored Sep 6, 2019
2 parents 51ceebb + f24fb37 commit 3290aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ language: nix
sudo: false

install:
- nix-env -i python2.7-ansible python2.7-ansible-lint ShellCheck-0.6.0
- nix-env -i python2.7-ansible python2.7-ansible-lint ShellCheck-0.7.0
- nix-env -if ./dhall-1.21.0.nix

# Check ansible version
Expand Down
3 changes: 2 additions & 1 deletion files/clever-set-domain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
set -e

function checkDomain {
clever domain | grep --ignore-case "${DOMAIN}"
# DNS domain names are case insensitive
clever domain | grep -i "${DOMAIN}"
}

function setDomain {
Expand Down

0 comments on commit 3290aaf

Please sign in to comment.