File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -1339,7 +1339,15 @@ object Build {
1339
1339
dependsOn(dottyCompiler).
1340
1340
dependsOn(dottyLibrary).
1341
1341
nonBootstrappedSettings(
1342
- addCommandAlias(" run" , " dotty-compiler/run" )
1342
+ addCommandAlias(" run" , " dotty-compiler/run" ),
1343
+ // Clean everything by default
1344
+ addCommandAlias(" clean" , " ;dotty/clean;dotty-bootstrapped/clean" ),
1345
+ // `publishLocal` on the non-bootstrapped compiler does not produce a
1346
+ // working distribution (it can't in general, since there's no guarantee
1347
+ // that the non-bootstrapped library is compatible with the
1348
+ // non-bootstrapped compiler), so publish the bootstrapped one by
1349
+ // default.
1350
+ addCommandAlias(" publishLocal" , " dotty-bootstrapped/publishLocal" ),
1343
1351
)
1344
1352
1345
1353
def asDottyCompiler (implicit mode : Mode ): Project = project.withCommonSettings.
You can’t perform that action at this time.
0 commit comments