2010-06-03 21:03:26 +02:00
|
|
|
open_lighthouse_ticket () {
|
|
|
|
if [ ! -f .lighthouse-url ]; then
|
2010-11-02 12:26:49 +01:00
|
|
|
echo "There is no .lighthouse-url file in the current directory..."
|
2019-03-24 11:29:35 +01:00
|
|
|
return 0
|
2010-06-03 21:03:26 +02:00
|
|
|
fi
|
2019-03-24 11:29:35 +01:00
|
|
|
|
|
|
|
lighthouse_url=$(cat .lighthouse-url)
|
|
|
|
echo "Opening ticket #$1"
|
|
|
|
open_command "$lighthouse_url/tickets/$1"
|
2010-06-03 21:03:26 +02:00
|
|
|
}
|
|
|
|
|
2010-11-02 12:26:49 +01:00
|
|
|
alias lho='open_lighthouse_ticket'
|