Skip to content

Commit 14e6ec8

Browse files
authored
Merge pull request #1930 from rohieb/qemu-run-fix-typo
examples: qemu-run: fix missing closing parenthesis
2 parents 0e8d233 + 1627e7d commit 14e6ec8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

dockerfiles/staging/dut/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN apt update -q=2 && \
1414

1515
COPY --chown=root:root ./authorized_keys /root/.ssh/authorized_keys
1616

17-
# As sshd scrubs ENV variables if they are set by the ENV varibale ensure to put the into /etc/profile as shown below
17+
# As sshd scrubs ENV variables if they are set by the ENV variable ensure to put the into /etc/profile as shown below
1818
ENV NOTVISIBLE="in users profile"
1919
RUN echo "export VISIBLE=now" >> /etc/profile
2020

examples/qemu-run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def main(args):
4141
"-s",
4242
"--state",
4343
default=os.environ.get("LG_STATE"),
44-
help="State to transition the strategy into (alternatively provided via LG_STATE",
44+
help="State to transition the strategy into (alternatively provided via LG_STATE)",
4545
)
4646
parser.add_argument(
4747
"-v",

labgrid/remote/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1859,7 +1859,7 @@ def get_parser(auto_doc_mode=False) -> "argparse.ArgumentParser | AutoProgramArg
18591859
"-s",
18601860
"--state",
18611861
type=str,
1862-
help="strategy state to switch into before command (default: value from env varibale LG_STATE)",
1862+
help="strategy state to switch into before command (default: value from env variable LG_STATE)",
18631863
)
18641864
parser.add_argument(
18651865
"-i",

man/labgrid-client.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ place name/alias (default: value from env variable LG_PLACE)
6363
.INDENT 0.0
6464
.TP
6565
.B \-s <state>, \-\-state <state>
66-
strategy state to switch into before command (default: value from env varibale LG_STATE)
66+
strategy state to switch into before command (default: value from env variable LG_STATE)
6767
.UNINDENT
6868
.INDENT 0.0
6969
.TP

0 commit comments

Comments
 (0)