chore(travis): fix lint

This commit is contained in:
Daniel Sogl 2018-04-08 19:52:33 +02:00 committed by GitHub
parent 7520a96cc6
commit 1e8626c435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,18 +63,12 @@ export const pluginWarn = (
);
} else {
console.warn(
'Native: tried accessing the ' +
pluginName +
" plugin but it's not installed."
`'Native: tried accessing the ${pluginName} plugin but it's not installed.`
);
}
if (plugin) {
console.warn(
'Install the ' +
pluginName +
" plugin: 'ionic cordova plugin add " +
plugin +
"'"
`Install the ${pluginName} plugin: 'ionic cordova plugin add ${plugin}'`
);
}
};