about summary refs log tree commit diff
path: root/pkgs/applications/office/atlassian-cli/wrapper.sh
blob: 80b60dbc468cadf01e79abcea8907cc52b240be6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

tool=@tool@
user=ATLASSIAN_${tool^^}_USER
host=ATLASSIAN_${tool^^}_HOST
pass=ATLASSIAN_${tool^^}_PASS

[ -f ~/.atlassian-cli ] && source ~/.atlassian-cli
if [ x = ${!user-x} ] || [ x = ${!host-x} ] || [ x = ${!pass-x} ]
then
    >&2 echo please define $user, $host, and $pass in '~/.atlassian-cli'
    exit 1
fi

@jre@/bin/java \
    -jar @out@/share/java/@tool@-cli-* \
    --server "${!host}" \
    --user "${!user}" \
    --password "${!pass}" \
    "$@"