1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-03 13:47:04 +03:00

systemd-run: really make -E an alias for --setenv (#3654)

systemd-run --help says:
  -E --setenv=NAME=VALUE          Set environment
This commit is contained in:
Michał Bartoszkiewicz 2016-07-05 19:23:23 +02:00 committed by Lennart Poettering
parent f05b266346
commit a17402291b

View File

@ -187,7 +187,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);
while ((c = getopt_long(argc, argv, "+hrH:M:p:tq", options, NULL)) >= 0)
while ((c = getopt_long(argc, argv, "+hrH:M:E:p:tq", options, NULL)) >= 0)
switch (c) {