Browse Source

Update for Saturnin v0.4.7

Alois Mahdal 6 years ago
parent
commit
da82f7d08a
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      packaging/debian/control
  2. 1
    1
      packaging/template.spec
  3. 1
    1
      src/complete.bash.skel

+ 1
- 1
packaging/debian/control View File

@@ -10,7 +10,7 @@ Package: saturnin-demo
10 10
 Architecture: all
11 11
 Depends:
12 12
  shellfu (>= 0.10.1),
13
- shellfu-bash-saturnin (>= 0.4.6)
13
+ shellfu-bash-saturnin (>= 0.4.7)
14 14
 Description: __MKIT_PROJ_TAGLINE__
15 15
  saturnin is Shellfu library that helps you easily build toolkit from
16 16
  various scripts that you may have lying around.  Instead of having a

+ 1
- 1
packaging/template.spec View File

@@ -9,7 +9,7 @@ Source0:	%{name}-%{version}.tar.gz
9 9
 BuildArch:	noarch
10 10
 BuildRequires:	coreutils git
11 11
 Requires:	shellfu >= 0.10.1
12
-Requires:	shellfu-bash-saturnin >= 0.4.6
12
+Requires:	shellfu-bash-saturnin >= 0.4.7
13 13
 
14 14
 %description
15 15
 saturnin is Shellfu library that helps you easily build toolkit from

+ 1
- 1
src/complete.bash.skel View File

@@ -23,7 +23,7 @@ __%s() {
23 23
             ;;
24 24
         *)
25 25
             COMPREPLY=(
26
-                $(compgen -W "$(%s _ls_sc)" "${cur}")
26
+                $(compgen -W "$(%s --saturnin-get-subcommands)" "${cur}")
27 27
             )
28 28
     esac
29 29
 }'