Skip to content

Commit

Permalink
improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensbox committed Apr 16, 2020
1 parent e83cde3 commit 9bc1a5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.13

working_directory: /go/src/github.com/warrensbox/terraform-switcher

Expand All @@ -22,7 +22,7 @@ jobs:
release:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.13

working_directory: /go/src/github.com/warrensbox/terraform-switcher

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Add the following to the end of your `~/.bashrc` file:
cdtfswitch(){
builtin cd "$@";
cdir=$PWD;
if [ -f "$cdir/.tfswitchrc" ]; then
if [ -e "$cdir/.tfswitchrc" ]; then
tfswitch
fi
}
Expand Down Expand Up @@ -146,7 +146,7 @@ load-tfswitch
cd(){
builtin cd "$@";
cdir=$PWD;
if [ -f "$cdir/.tfswitchrc" ]; then
if [ -e "$cdir/.tfswitchrc" ]; then
tfswitch
fi
}
Expand Down

0 comments on commit 9bc1a5a

Please sign in to comment.