You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, shellcheck would warn:
In eos-firstboot line 9:
> /var/lib/eos-firstboot
^----------------------^ SC2188 (warning): This redirection doesn't have a command. Move to its command (or use 'true' as no-op).
For more information:
https://www.shellcheck.net/wiki/SC2188 -- This redirection doesn't have a c...
This is intended to catch cases where the redirect was meant to apply to
the command on the line before.
In this case the usage is correct. Use `:`, which means the same as the
`true` builtin: do nothing, successfully, with no output.
0 commit comments