File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
v-next/hardhat/src/internal/builtin-plugins/solidity/build-system Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ export class SolidityBuildSystemImplementation implements SolidityBuildSystem {
122
122
options ?: BuildOptions ,
123
123
) : Promise < CompilationJobCreationError | Map < string , FileBuildResult > > {
124
124
if ( options ?. quiet !== true ) {
125
- console . log ( "Compiling your Solidity contracts" ) ;
125
+ console . log ( "Compiling your Solidity contracts... " ) ;
126
126
}
127
127
128
128
await this . #downloadConfiguredCompilers( options ?. quiet ) ;
@@ -938,6 +938,10 @@ export class SolidityBuildSystemImplementation implements SolidityBuildSystem {
938
938
Map < string , CompilationJob [ ] >
939
939
> ( ) ;
940
940
941
+ if ( runnableCompilationJobs . length === 0 ) {
942
+ console . log ( "\nNothing to compile" ) ;
943
+ }
944
+
941
945
for ( const job of runnableCompilationJobs ) {
942
946
const solcVersion = job . solcConfig . version ;
943
947
const solcInput = await job . getSolcInput ( ) ;
You can’t perform that action at this time.
0 commit comments