-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Just did an install from melpa to Doom emacs. I have the following bb.edn file.
{:tasks
{db-stop {:doc "Stop the devbox distrobox"
:task (shell "distrobox stop --yes devbox")}
db-rm {:doc "Remove the devbox distrobox"
:task (shell "distrobox rm --force devbox")}
db-create {:doc "Create the devbox distrobox"
:task (shell "distrobox create devbox -i devbox")}
db-enter {:doc "Enter the created distrobox"
:task (shell "distrobox enter devbox")}
remake {:doc "Will kill and build and create a new devbox ready to enter"
:task (do (run 'pm-build)
(run 'db-stop)
(run 'db-rm)
(run 'db-create))}
pm-build {:doc "Build docker image"
:task (shell "podman build -f CoreBox -t devbox .")}
pm-clean {:doc "Cleanup unused images"
:task (shell "podman image prune --all")}}}
I am getting the following error when running babashka-tasks.
parseclj--reduce-coll: parseclj: Syntax error: "At position 528, unmatched :rparen"
What am I doing wrong here?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels