mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
7 lines
150 B
Bash
Executable file
7 lines
150 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$#" == '1' && "${1:0:1}" != '-' ]]; then
|
|
exec /opt/gitkraken/gitkraken -p "$1"
|
|
else
|
|
exec /opt/gitkraken/gitkraken "$@"
|
|
fi
|