Reputation: 5619
I try to import an Scala Project into intellij. Intellij founds starts to load the dependencies then I got this error
How can I solve this issue?
[error] Expected non-whitespace character
[error] --addPluginSbtFile=C:\Users\Firstname Lastname\AppData\Local\Temp\idea1.sbt
[error] ^
Thanks in Advance
Upvotes: 1
Views: 213
Reputation: 5948
This is fixed in the Scala plugin for IntelliJ IDEA update 2019.3.18 and release 2020.1
https://youtrack.jetbrains.com/issue/SCL-15360
Upvotes: 1
Reputation: 378
The path should not contain BlankSpaces.
You have a blank space between Firstname LastName:
C:\Users\Firstname Lastname\AppData\Local\Temp\idea1.sbt
Possible solution:
C:\Users\FirstnameLastname\AppData\Local\Temp\idea1.sbt
Upvotes: 1