9efaea5036
Various editors depend on the shebang line to determine what language to use for syntax highlighting and/or linting. Therefore add one. It is ignored when sourcing and the scriplets are not executable so the shebang will never be used. Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
7 lines
103 B
Bash
7 lines
103 B
Bash
#!/bin/bash
|
|
|
|
IMG_SUFFIX=""
|
|
if [ "${USE_QEMU}" = "1" ]; then
|
|
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
|
fi
|