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 { } else {
console.warn( console.warn(
'Native: tried accessing the ' + `'Native: tried accessing the ${pluginName} plugin but it's not installed.`
pluginName +
" plugin but it's not installed."
); );
} }
if (plugin) { if (plugin) {
console.warn( console.warn(
'Install the ' + `Install the ${pluginName} plugin: 'ionic cordova plugin add ${plugin}'`
pluginName +
" plugin: 'ionic cordova plugin add " +
plugin +
"'"
); );
} }
}; };