Selaa lähdekoodia

Solve or mute last few ShellCheck issues

Alois Mahdal 7 vuotta sitten
vanhempi
commit
59bd58a2ca
3 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 1
    1
      src/include/build.sh
  2. 1
    0
      src/include/mkit.sh
  3. 1
    0
      src/include/vars.sh.skel

+ 1
- 1
src/include/build.sh Näytä tiedosto

@@ -120,7 +120,7 @@ build() {
120 120
     # Add meat to all skeletons
121 121
     #
122 122
     local srcpath   # each source path
123
-    find -type f -name '*.skel' \
123
+    find . -type f -name '*.skel' \
124 124
      | while read -r srcpath; do
125 125
            _build1 "$srcpath"
126 126
        done

+ 1
- 0
src/include/mkit.sh Näytä tiedosto

@@ -132,6 +132,7 @@ mkit_init() {
132 132
     # Check for ini file and some variables
133 133
     #
134 134
     $MKIT_DRY && MKIT_DEBUG=true
135
+    #shellcheck disable=SC2034
135 136
     MKIT_PROJ_PKGNAME=$(ini 1value "project:pkgname")
136 137
     test -f "$MKIT_INI" || die "cannot find mkit.ini: $MKIT_INI"
137 138
     _chkiniversion

+ 1
- 0
src/include/vars.sh.skel Näytä tiedosto

@@ -1,4 +1,5 @@
1 1
 #!/bin/bash
2
+#shellcheck disable=SC2034
2 3
 # MKit - simple install helper
3 4
 # See LICENSE file for copyright and license details.
4 5