Skip to content

Commit

Permalink
Fix shellcheck issue in firstboot script
Browse files Browse the repository at this point in the history
Before this change, the firstboot script was not
passing shellcheck test as it invoked jffs2reset
without quotes, leading to potential re-splitting.

Signed-off-by: Matteo Iervasi <matteo.iervasi@edalab.it>
  • Loading branch information
miervasi-edalab committed Mar 27, 2024
1 parent 2951586 commit d01aecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/base-files/files/sbin/firstboot
@@ -1,3 +1,3 @@
#!/bin/sh

/sbin/jffs2reset $@
/sbin/jffs2reset "$@"

0 comments on commit d01aecd

Please sign in to comment.