diff --git a/my-extra-packages b/my-extra-packages index ecd6782..2adaae7 100644 --- a/my-extra-packages +++ b/my-extra-packages @@ -5,7 +5,9 @@ fd fzf git-delta lazygit +jujutsu neovim python ripgrep +tmux zoxide diff --git a/tasks.py b/tasks.py index da4c314..54a002f 100755 --- a/tasks.py +++ b/tasks.py @@ -8,11 +8,11 @@ if not ( _src.parent.mkdir(exist_ok=True) _src.write_text(_r.read().decode()) -from swydd import task, sub, cli, ctx +from swydd import task, sub, cli @task def build(): """build the image (forwards positioanl args)""" - sub("podman build . -t daylinbox " + " ".join(ctx.rest)) + sub("podman build . -t daylinbox ", rest=True) cli("build")