File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,9 @@ export class IOSLiveSyncService extends PlatformLiveSyncServiceBase implements I
32
32
const tempZip = temp . path ( { prefix : "sync" , suffix : ".zip" } ) ;
33
33
this . $logger . trace ( "Creating zip file: " + tempZip ) ;
34
34
35
- await this . $fs . zipFiles ( tempZip , this . $fs . enumerateFilesInDirectorySync ( projectFilesPath ) , ( res ) => {
35
+ const filesToTransfer = this . $fs . enumerateFilesInDirectorySync ( projectFilesPath ) ;
36
+
37
+ await this . $fs . zipFiles ( tempZip , filesToTransfer , ( res ) => {
36
38
return path . join ( APP_FOLDER_NAME , path . relative ( projectFilesPath , res ) ) ;
37
39
} ) ;
38
40
@@ -43,6 +45,8 @@ export class IOSLiveSyncService extends PlatformLiveSyncServiceBase implements I
43
45
deviceProjectRootPath : await deviceAppData . getDeviceProjectRootPath ( )
44
46
} ] ) ;
45
47
48
+ await deviceAppData . device . applicationManager . setTransferredAppFiles ( filesToTransfer ) ;
49
+
46
50
return {
47
51
deviceAppData,
48
52
isFullSync : true ,
You can’t perform that action at this time.
0 commit comments