Browse Source

Use double-slash for suite ids

Alois Mahdal 6 years ago
parent
commit
53fad77dea
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      src/libexec/jattool-sfind
  2. 1
    1
      src/libexec/jattool-tfind

+ 1
- 1
src/libexec/jattool-sfind View File

@@ -74,7 +74,7 @@ discover() {
74 74
                 jats)
75 75
                     echo -n "jats://$SuiteDomain/$SuiteNs"
76 76
                     test -n "$SuiteSutPname" && echo -n "/$SuiteSutPname"
77
-                    echo
77
+                    echo //
78 78
                     ;;
79 79
                 path)
80 80
                     echo "$SuiteDir"

+ 1
- 1
src/libexec/jattool-tfind View File

@@ -31,7 +31,7 @@ discover() {
31 31
             debug -v s_dir s_id t_apath t_rpath
32 32
             case $Fmt in
33 33
                 path) echo "$s_dir/$t_rpath" ;;
34
-                jats) echo "$s_id/$t_rpath" ;;
34
+                jats) echo "$s_id$t_rpath"   ;;
35 35
             esac
36 36
         done
37 37
 }