From 0b1e4e6e8401d1e16aa7ab64e3ae0ea029b0fd9a Mon Sep 17 00:00:00 2001 From: Jonathan Alexander Date: Sat, 20 May 2017 06:23:15 -0400 Subject: [PATCH] docs(): update install command (#1592) The install text is missing cordova so it won't install just by copying and pasting in a terminal. --- src/@ionic-native/plugins/deeplinks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/deeplinks/index.ts b/src/@ionic-native/plugins/deeplinks/index.ts index af1d5c861..a65d7fcda 100644 --- a/src/@ionic-native/plugins/deeplinks/index.ts +++ b/src/@ionic-native/plugins/deeplinks/index.ts @@ -79,7 +79,7 @@ export interface DeeplinkMatch { pluginRef: 'IonicDeeplink', repo: 'https://github.com/driftyco/ionic-plugin-deeplinks', platforms: ['iOS', 'Android', 'Browser'], - install: 'ionic plugin add ionic-plugin-deeplinks --variable URL_SCHEME=myapp --variable DEEPLINK_SCHEME=https --variable DEEPLINK_HOST=example.com --variable ANDROID_PATH_PREFIX=/', + install: 'ionic cordova plugin add ionic-plugin-deeplinks --variable URL_SCHEME=myapp --variable DEEPLINK_SCHEME=https --variable DEEPLINK_HOST=example.com --variable ANDROID_PATH_PREFIX=/', installVariables: ['URL_SCHEME', 'DEEPLINK_SCHEME', 'DEEPLINK_HOST', 'ANDROID_PATH_PREFIX'] }) @Injectable()