# Pastebin YtRQUGYI zyga@yantra:~/go/src/github.com/snapcore/snapd> shellcheck -x ./tests/lib/reset.sh In ./tests/lib/reset.sh line 151: for mnt in $(find /run/snapd/ns -maxdepth 1 -name '*.mnt'); do ^-- SC2044: For loops over find output are fragile. Use find -exec or a while read loop. In ./tests/lib/reset.sh line 155: for fstab in $(find /run/snapd/ns -maxdepth 1 -name '*.fstab'); do ^-- SC2044: For loops over find output are fragile. Use find -exec or a while read loop. For more information: https://www.shellcheck.net/wiki/SC2044 -- For loops over find output are fragil...