diff options
Diffstat (limited to 'linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh')
-rwxr-xr-x | linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh b/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh index 2702d71..78e9bcd 100755 --- a/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh +++ b/linden/indra/newview/linux_tools/handle_secondlifeprotocol.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | # Send a URL of the form secondlife://... to Second Life. | 3 | # Send a URL of the form secondlife://... to the grid. |
4 | # | 4 | # |
5 | 5 | ||
6 | URL="$1" | 6 | URL="$1" |
@@ -13,9 +13,9 @@ fi | |||
13 | RUN_PATH=`dirname "$0" || echo .` | 13 | RUN_PATH=`dirname "$0" || echo .` |
14 | cd "${RUN_PATH}" | 14 | cd "${RUN_PATH}" |
15 | 15 | ||
16 | if [ `pidof do-not-directly-run-imprudence-bin` ]; then | 16 | if [ `pidof do-not-directly-run-meta-impy-bin` ]; then |
17 | exec dbus-send --type=method_call --dest=com.secondlife.ViewerAppAPIService /com/secondlife/ViewerAppAPI com.secondlife.ViewerAppAPI.GoSLURL string:"$1" | 17 | exec dbus-send --type=method_call --dest=com.secondlife.ViewerAppAPIService /com/secondlife/ViewerAppAPI com.secondlife.ViewerAppAPI.GoSLURL string:"$1" |
18 | else | 18 | else |
19 | exec ./imprudence -url \'"${URL}"\' | 19 | exec ./meta-impy -url \'"${URL}"\' |
20 | fi | 20 | fi |
21 | 21 | ||