You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/ec2/ec2.load

19 lines
508 B
Fish

### Main program
if test -d (/usr/libexec/java_home)
set -gx JAVA_HOME (/usr/libexec/java_home)
end
if test (/bin/ls $HOME/.ec2/pk-*.pem | /usr/bin/head -1)
set -gx EC2_PRIVATE_KEY (/bin/ls $HOME/.ec2/pk-*.pem | /usr/bin/head -1)
end
if test (/bin/ls $HOME/.ec2/cert-*.pem | /usr/bin/head -1)
set -gx EC2_CERT (/bin/ls $HOME/.ec2/cert-*.pem | /usr/bin/head -1)
end
if test -d /usr/local/Library/LinkedKegs/ec2-api-tools/jars
set -gx EC2_HOME /usr/local/Library/LinkedKegs/ec2-api-tools/jars
end