Commit 9830d10
committed
isSnapshot may be false for manually overriden versions
When using `sbt -Dscala.version=2.X.Y` to test out packages,
newer version of sbt-git have been setting `isSnapshot` to false
if there isn't a tag associated with the current commit of
scala/scala-dist. This makes it hard to test out changes in
this repo as we get diffs like:
```
$ rpm -qip /home/ubuntu/code/scala-dist-baseline/target/scala-2.13.6.rpm
Name : scala
Version : 2.13.6
Release : 1
Architecture: noarch
Install Date: (not installed)
Group : Development/Languages
Size : 649267584
License : BSD
Signature : (none)
Source RPM : scala-2.13.6-1.src.rpm
```
```
$ rpm -qip /home/ubuntu/code/scala-dist/target/scala-2.13.6.rpm
Name : scala
Version : 2.13.6
Release : SNAPSHOT
Architecture: noarch
Install Date: (not installed)
Group : Development/Languages
Size : 649267584
License : BSD
Signature : (none)
Source RPM : scala-2.13.6-SNAPSHOT.src.rpm
...
```1 parent 83451fd commit 9830d10
1 file changed
+7
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
11 | 18 | | |
12 | 19 | | |
13 | 20 | | |
| |||
0 commit comments