diff options
author | Serge Schneider <[email protected]> | 2018-03-02 20:08:24 +0000 |
---|---|---|
committer | Serge Schneider <[email protected]> | 2018-03-13 12:50:50 +0000 |
commit | ff2d5edee18efbb7ba2498e5bf8d308c186c4866 (patch) | |
tree | 380dd4fb8138fcbcf374839a880deb3191ca0725 /stage1/00-boot-files | |
parent | 56da271499afe7ae8e35a8fd30f04135283b2fb0 (diff) |
shellcheck
Diffstat (limited to 'stage1/00-boot-files')
-rwxr-xr-x | stage1/00-boot-files/00-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stage1/00-boot-files/00-run.sh b/stage1/00-boot-files/00-run.sh index 2c976a8..bc61397 100755 --- a/stage1/00-boot-files/00-run.sh +++ b/stage1/00-boot-files/00-run.sh @@ -1,4 +1,4 @@ #!/bin/bash -e -install -m 644 files/cmdline.txt ${ROOTFS_DIR}/boot/ -install -m 644 files/config.txt ${ROOTFS_DIR}/boot/ +install -m 644 files/cmdline.txt "${ROOTFS_DIR}/boot/" +install -m 644 files/config.txt "${ROOTFS_DIR}/boot/" |