mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-24 20:51:55 +00:00
Merge pull request #365 from embark-framework/bug_fix/fix-versions-with-spaces
Fix versions with spaces and add warning
This commit is contained in:
commit
ad136802da
@ -27,6 +27,14 @@ class LibraryManager {
|
||||
this.versions['solc'] = solcVersionInConfig;
|
||||
this.versions['web3'] = web3VersionInConfig;
|
||||
this.versions['ipfs-api'] = ipfsApiVersion;
|
||||
|
||||
Object.keys(this.versions).forEach(versionKey => {
|
||||
const newVersion = this.versions[versionKey].trim();
|
||||
if (newVersion !== this.versions[versionKey]) {
|
||||
this.embark.logger.warn(`There a a space in the version of ${versionKey}. We corrected it for you ("${this.versions[versionKey]}" => "${newVersion}").`);
|
||||
this.versions[versionKey] = newVersion;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
registerCommands() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user