Anton Harald
Anton Harald

Reputation: 5934

leiningen project: repl-options/init

When I add :repl-options {:init (print "x..")} to ~/.lein/profiles.clj it does what it should on every repl start-up. however, when I add the same to my local project.clj, I receive this error:

Exception in thread "main" java.lang.RuntimeException: Unable to resolve symbol: do in this context, compiling:(/tmp/form-init5885833654225579206.clj:1:886) 

I'm using leiningen 2.5.3

Upvotes: 2

Views: 189

Answers (1)

Eugene Pakhomov
Eugene Pakhomov

Reputation: 10642

I've stumbled across this issue as well - I tried to use multiple profiles, each with its own :repl-options. The issue is that Leiningen doesn't merge `:init: correctly. You can refer to this issue for more details.

Unfortunately, I couldn't find any fix that would work for me. And the issue itself won't be fixed till Leiningen 3.0.

Upvotes: 1

Related Questions