Преглед на файлове

hopefully will generate list files properly now

Kevin Bradley преди 1 година
родител
ревизия
279e789ec3
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      bootstrapTool/Classes/InputPackage.m

+ 5 - 0
bootstrapTool/Classes/InputPackage.m

@@ -71,6 +71,11 @@
     if (!validated) {
         fileList = [HelperClass returnForProcess:[NSString stringWithFormat:@"/usr/local/bin/dpkg-deb -c %@ | awk '{ print $6 }' | cut -c 2-" , self.path]];
     }
+    if ([fileList containsObject:@"/"]) {
+        NSMutableArray *_mutableList = [fileList mutableCopy];
+        [_mutableList removeObject:@"/"];
+        fileList = [_mutableList copy];
+    }
     return fileList;
 }