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