Skip to content

Commit

Permalink
base-files: Avoid re-splitting 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 Apr 3, 2024
1 parent 2951586 commit 1353ab7
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 1353ab7

Please sign in to comment.