-
Notifications
You must be signed in to change notification settings - Fork 2
Upgrades #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrades #1
Conversation
The sbt script was failing because of an old version of scalac, so I just upgraded all the things.
@@ -53,10 +53,10 @@ which is handy when working on a particular exercise: | |||
./sbt | |||
|
|||
# Run the tests from a package containing the name "Id" | |||
> testOnly "*Id*" | |||
> testOnly *Id* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For some reason testOnly wasn't working when these things were quoted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah not sure why I put the quotes in 👍
@@ -20,9 +20,9 @@ scalacOptions := Seq( | |||
"-deprecation" | |||
, "-unchecked" | |||
, "-Xfatal-warnings" | |||
, "-Xlint" | |||
, "-Xlint:_,-unused" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't want unused errors because the exercises import useful things but don't use them (until the exercises are implemented)
@@ -18,10 +18,10 @@ declare -r latest_28="2.8.2" | |||
|
|||
declare -r buildProps="project/build.properties" | |||
|
|||
declare -r sbt_launch_ivy_release_repo="https://repo.typesafe.com/typesafe/ivy-releases" | |||
declare -r sbt_launch_ivy_release_repo="http://repo.typesafe.com/typesafe/ivy-releases" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I redownloaded the sbt script. Weird change, happy to undo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I manually changed them to https, I don't know why Paul would want it to be http. We should probably push that change upstream.
💯 Thanks Brian |
No description provided.