File tree 3 files changed +38
-3
lines changed
client/commands/packages/processes
3 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ package com.apm.client.commands.packages.processes
15
15
{
16
16
import com.apm.client.APM ;
17
17
import com.apm.client.processes.ProcessBase ;
18
+ import com.apm.data.common.Platform ;
18
19
import com.apm.data.install.InstallData ;
19
20
import com.apm.data.install.InstallPackageData ;
20
21
import com.apm.utils.DeployFileUtils ;
@@ -84,10 +85,10 @@ package com.apm.client.commands.packages.processes
84
85
// Check each asset directory (named after the platform) for inclusion in project
85
86
for each (var assetsDir: File in ref. getDirectoryListing())
86
87
{
87
- var assetsPlatform: String = assetsDir. name . toLowerCase ();
88
- var assetsDeployLocation: File = deployLocation. resolvePath( assetsPlatform );
88
+ var assetsPlatform: String = Platform. getPlatformFromVariant( assetsDir. name );
89
89
if (APM . config. projectDefinition. shouldIncludePlatform( assetsPlatform ))
90
90
{
91
+ var assetsDeployLocation: File = deployLocation. resolvePath( assetsDir. name );
91
92
FileUtils. copyDirectoryTo( assetsDir, assetsDeployLocation, true );
92
93
}
93
94
}
Original file line number Diff line number Diff line change @@ -62,6 +62,40 @@ package com.apm.data.common
62
62
}
63
63
64
64
65
+ /**
66
+ * This helper function retrieves the platform name from a sub-platform variant.
67
+ *
68
+ * Variants include sub-platforms like <code >ios_simulator</code >
69
+ *
70
+ * @param variant The name of the sub-platform
71
+ * @return
72
+ */
73
+ public static function getPlatformFromVariant ( variant :String ):String
74
+ {
75
+ var variantLowerCase: String = variant . toLowerCase ();
76
+ if (variantLowerCase. substr (0 , Platform. IOS . length ) == Platform. IOS )
77
+ {
78
+ return Platform. IOS ;
79
+ }
80
+ if (variantLowerCase. substr (0 , Platform. ANDROID . length ) == Platform. ANDROID )
81
+ {
82
+ return Platform. ANDROID ;
83
+ }
84
+ if (variantLowerCase. substr (0 , Platform. WINDOWS . length ) == Platform. WINDOWS )
85
+ {
86
+ return Platform. WINDOWS ;
87
+ }
88
+ if (variantLowerCase. substr (0 , Platform. MACOS . length ) == Platform. MACOS )
89
+ {
90
+ return Platform. MACOS ;
91
+ }
92
+ if (variantLowerCase. substr (0 , Platform. LINUX . length ) == Platform. LINUX )
93
+ {
94
+ return Platform. LINUX ;
95
+ }
96
+ return variantLowerCase;
97
+ }
98
+
65
99
public static function isKnownPlatformName ( platform :String ):Boolean
66
100
{
67
101
switch (platform)
Original file line number Diff line number Diff line change 2
2
3
3
version_major=1
4
4
version_minor=6
5
- version_build=0
5
+ version_build=1
6
6
version_preview=
You can’t perform that action at this time.
0 commit comments