File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const fileName = process.env.NATIVEPHP_APP_FILENAME;
10
10
const appVersion = process . env . NATIVEPHP_APP_VERSION ;
11
11
const appUrl = process . env . APP_URL ;
12
12
const appAuthor = process . env . NATIVEPHP_APP_AUTHOR ;
13
+ const deepLinkProtocol = process . env . NATIVEPHP_DEEPLINK_SCHEME ;
13
14
14
15
// Since we do not copy the php executable here, we only need these for building
15
16
const isWindows = process . argv . includes ( '--win' ) ;
@@ -120,8 +121,6 @@ if (isBuilding) {
120
121
121
122
}
122
123
123
- const deepLinkProtocol = 'nativephp' ;
124
-
125
124
module . exports = {
126
125
appId : appId ,
127
126
productName : appName ,
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ protected function getEnvironmentVariables(): array
82
82
'NATIVEPHP_APP_FILENAME ' => Str::slug (config ('app.name ' )),
83
83
'NATIVEPHP_APP_AUTHOR ' => config ('nativephp.author ' ),
84
84
'NATIVEPHP_UPDATER_CONFIG ' => json_encode (Updater::builderOptions ()),
85
+ 'NATIVEPHP_DEEPLINK_SCHEME ' => config ('nativephp.deeplink_scheme ' ),
85
86
],
86
87
Updater::environmentVariables (),
87
88
);
You can’t perform that action at this time.
0 commit comments