todos,plans: fix args
This commit is contained in:
parent
160ee8f7fa
commit
9e7c5e60f2
2 changed files with 2 additions and 2 deletions
|
@ -2,6 +2,6 @@ with import <nixpkgs> {};
|
||||||
|
|
||||||
pkgs.writeShellScriptBin "plans" ''
|
pkgs.writeShellScriptBin "plans" ''
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
file=~/sync/plans.txt plans-backend $@
|
file=~/sync/plans.txt plans-backend "$@"
|
||||||
''
|
''
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,6 @@ with import <nixpkgs> {};
|
||||||
|
|
||||||
pkgs.writeShellScriptBin "todos" ''
|
pkgs.writeShellScriptBin "todos" ''
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
file=~/sync/todo.txt plans-backend $@
|
file=~/sync/todo.txt plans-backend "$@"
|
||||||
''
|
''
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue