todos,plans: fix args

This commit is contained in:
Daniella / Tove 2024-11-03 00:13:36 +01:00
parent 160ee8f7fa
commit 9e7c5e60f2
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
2 changed files with 2 additions and 2 deletions

View file

@ -2,6 +2,6 @@ with import <nixpkgs> {};
pkgs.writeShellScriptBin "plans" ''
#!/bin/sh
file=~/sync/plans.txt plans-backend $@
file=~/sync/plans.txt plans-backend "$@"
''

View file

@ -2,6 +2,6 @@ with import <nixpkgs> {};
pkgs.writeShellScriptBin "todos" ''
#!/bin/sh
file=~/sync/todo.txt plans-backend $@
file=~/sync/todo.txt plans-backend "$@"
''