Ubuntu Pastebin

Paste from ack at Fri, 6 Oct 2017 08:22:43 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$ (git ls-files -z 2>/dev/null || find . \( -name .git -o -name vendor \) -prune -o -print0 ) | xargs -0 file -N | awk
-F": " '$2~/shell.script/{print $1}' | xargs shellcheck

In tests/lib/dbus.sh line 20:
                    --setenv=DBUS_SESSION_BUS_ADDRESS=$DBUS_SESSION_BUS_ADDRESS \
                                                      ^-- SC2086: Double quote to prevent globbing and word splitting.


In tests/lib/dbus.sh line 21:
                    --setenv=DBUS_SESSION_BUS_PID=$DBUS_SESSION_BUS_PID \
                                                  ^-- SC2086: Double quote to prevent globbing and word splitting.


In tests/lib/dbus.sh line 22:
                    $executable
                    ^-- SC2086: Double quote to prevent globbing and word splitting.


In tests/lib/snaps/basic-hooks/meta/hooks/configure line 6:
    env > $SNAP_DATA/hooks-env
          ^-- SC2086: Double quote to prevent globbing and word splitting.


In tests/lib/snaps/test-snapd-service/meta/hooks/configure line 4:
    snapctl $COMMAND test-snapd-service.test-snapd-service
            ^-- SC2086: Double quote to prevent globbing and word splitting.
Download as text