mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-11 04:33:46 +00:00
In d4m.sh line 14: (cd $DB && \ ^-- SC2086: Double quote to prevent globbing and word splitting. In d4m.sh line 21: (cd $DB; git reset --hard) ^-- SC2086: Double quote to prevent globbing and word splitting. In d4m.sh line 22: if [ -f ${DB}/${DB_BRIDGE} ]; then ^-- SC2086: Double quote to prevent globbing and word splitting. In d4m.sh line 23: content=$(cat ${DB}/${DB_BRIDGE}) ^-- SC2086: Double quote to prevent globbing and word splitting. In d4m.sh line 24: [ ${content} != "1" ] && enable_bridge ^-- SC2086: Double quote to prevent globbing and word splitting. In d4m.sh line 34: dd if=/dev/zero of=$DISK bs=1048576 count=256 ^-- SC2086: Double quote to prevent globbing and word splitting. Signed-off-by: Tycho Andersen <tycho@docker.com>