@@ -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;