You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aliases are prone to StackOverflowErrors given these conditions:
The value starts with a semicolon
The alias is a prefix of a command/task on the RHS
The following aliases reproduce this issue:
alias cl=;clean
alias co=;clean;compile
Here's a transcipt of an sbt-0.13.0 session:
> alias c=;clean
tmp-0.1-SNAPSHOT (-)
> c
[error] java.lang.StackOverflowError
[error] Use 'last' for the full log.
tmp-0.1-SNAPSHOT (-)
> alias c=clean
tmp-0.1-SNAPSHOT (-)
> c
[success] Total time: 0 s, completed 23.10.2013 16:08:35
tmp-0.1-SNAPSHOT (-)
>
The text was updated successfully, but these errors were encountered:
This avoids an additional cause of recursion via the semicolon/multiple command, which fixes#933.
It also provides error messages on the expanded command. This fixes#598.
Aliases are prone to
StackOverflowError
s given these conditions:The following aliases reproduce this issue:
alias cl=;clean
alias co=;clean;compile
Here's a transcipt of an sbt-0.13.0 session:
The text was updated successfully, but these errors were encountered: