Closed russellhill closed 8 years ago
At some point, this text is written into the .zshrc file:
export PATH="$PATH:$HOME/.ec2.cli" script_dir=$(dirname $0) if [ -f ~/.ec2.cli/completion.bash ]; then source ~/.ec2.cli/completion.bash fi
This does not work due to the line with dirname, so maybe remove this as it doesn't seem to be referenced...
dirname
export PATH="$PATH:$HOME/.ec2.cli" if [ -f ~/.ec2.cli/completion.bash ]; then source ~/.ec2.cli/completion.bash fi
At some point, this text is written into the .zshrc file:
This does not work due to the line with
dirname
, so maybe remove this as it doesn't seem to be referenced...