-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dracut): shellcheck regression in DRACUT_INSTALL calls
If the DRACUT_INSTALL environment variable contains arguments (e.g.: DRACUT_INSTALL="/usr/lib/dracut/dracut-install --debug"), its call cannot be enclosed in double quotes. E.g.: ``` > export DRACUT_INSTALL="/usr/lib/dracut/dracut-install" > "$DRACUT_INSTALL" > /dev/null dracut-install: No SOURCE argument given > export DRACUT_INSTALL="/usr/lib/dracut/dracut-install --debug" > "$DRACUT_INSTALL" > /dev/null -bash: /usr/lib/dracut/dracut-install --debug: No such file or directory > $DRACUT_INSTALL > /dev/null dracut-install: No SOURCE argument given ```
- Loading branch information
1 parent
e450085
commit 097dd36
Showing
2 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters