mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-10 01:09:28 -05:00
shell: fix log rules arg (#67)
This commit is contained in:
@@ -27,7 +27,7 @@ class Command:
|
|||||||
# Start the shell
|
# Start the shell
|
||||||
args = ["qs", "-c", "caelestia", "-n"]
|
args = ["qs", "-c", "caelestia", "-n"]
|
||||||
if self.args.log_rules:
|
if self.args.log_rules:
|
||||||
args.append("--log-rules", self.args.log_rules)
|
args.extend(["--log-rules", self.args.log_rules])
|
||||||
if self.args.daemon:
|
if self.args.daemon:
|
||||||
args.append("-d")
|
args.append("-d")
|
||||||
subprocess.run(args)
|
subprocess.run(args)
|
||||||
|
|||||||
Reference in New Issue
Block a user