mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
Fixed an issue in FileSystem module.
This commit is contained in:
@ -293,7 +293,8 @@
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'iOS_Tests'">
|
||||
<TargetOS>iOS</TargetOS>
|
||||
<JSConfig>Deploy\xCode\Configuration.xml</JSConfig>
|
||||
<JSMainFile>bootstrap.js</JSMainFile>
|
||||
<!--TODO: Do not call this JSMainFile - this file is actually NOT deleted during the Copy step.-->
|
||||
<JSMainFile>Readme.md</JSMainFile>
|
||||
<CopyTests>true</CopyTests>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Documentation'">
|
||||
|
1
Deploy/xCode/.gitignore
vendored
Normal file
1
Deploy/xCode/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/Configuration.xml
|
@ -375,8 +375,7 @@ export class FileSystemAccess {
|
||||
nsArray.addObject(paths[i]);
|
||||
}
|
||||
|
||||
// TODO: Static methods return NSString instance to enable its methods
|
||||
var nsString: any = Foundation.NSString.pathWithComponents(nsArray);
|
||||
var nsString = Foundation.NSString.stringWithString(Foundation.NSString.pathWithComponents(nsArray));
|
||||
return nsString.stringByStandardizingPath();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user