aboutsummaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
Diffstat (limited to 'po')
-rwxr-xr-xpo16
1 files changed, 16 insertions, 0 deletions
diff --git a/po b/po
new file mode 100755
index 0000000..28736d9
--- /dev/null
+++ b/po
@@ -0,0 +1,16 @@
+#!/bin/sh
+if [ ! -d .osc ] ; then
+ echo 'This program must be run from an OBS project directory.'
+ exit 42
+fi
+
+if [ -f .osc/_packages ] ; then
+ apiurl=$(cat .osc/_apiurl)
+ project=$(cat .osc/_project)
+ xdg-open "${apiurl}/project/show/${project}"
+else
+ apiurl=$(cat .osc/_apiurl)
+ project=$(cat .osc/_project)
+ package=$(cat .osc/_package)
+ xdg-open "${apiurl}/package/show/${project}/${package}"
+fi