We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a2edf9 + 74263fd commit 93bc7b6Copy full SHA for 93bc7b6
src/ugrd/base/base.py
@@ -1,5 +1,5 @@
1
__author__ = "desultory"
2
-__version__ = "6.1.1"
+__version__ = "6.1.2"
3
4
from pathlib import Path
5
@@ -138,7 +138,7 @@ def rd_fail(self) -> list[str]:
138
r'eerror "Loaded modules:\n$(cat /proc/modules)"',
139
r'eerror "Block devices:\n$(blkid)"',
140
r'eerror "Mounts:\n$(mount)"',
141
- 'if [ "$(readvar recovery)" == "1" ]; then',
+ 'if [ "$(readvar recovery)" = "1" ]; then',
142
' einfo "Entering recovery shell"',
143
]
144
if "ugrd.base.plymouth" in self["modules"]:
@@ -187,7 +187,7 @@ def check_var(self) -> str:
187
fi
188
return 1
189
190
- if [ "$(readvar "$1")" == "1" ]; then
+ if [ "$(readvar "$1")" = "1" ]; then
191
return 0
192
193
0 commit comments