File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Assets/MixedRealityToolkit/Utilities/Editor/Setup Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -421,13 +421,13 @@ private static void TryToCreateGeneratedFolder(string folderPath)
421421 if ( generatedDirs == null || ! generatedDirs . Any ( ) )
422422 {
423423 string parentFolderPath = Directory . GetParent ( folderPath ) . FullName ;
424- string generatedFolderPath = parentFolderPath + " \\ " + " MixedRealityToolkit.Generated";
424+ string generatedFolderPath = Path . Combine ( parentFolderPath , " MixedRealityToolkit.Generated") ;
425425 if ( ! Directory . Exists ( generatedFolderPath ) )
426426 {
427427 Directory . CreateDirectory ( generatedFolderPath ) ;
428428 }
429429
430- string generatedSentinelFilePath = generatedFolderPath + " \\ " + " MRTK.Generated.sentinel";
430+ string generatedSentinelFilePath = Path . Combine ( generatedFolderPath , " MRTK.Generated.sentinel") ;
431431 if ( ! File . Exists ( generatedSentinelFilePath ) )
432432 {
433433 // Make sure we create and dispose/close the filestream just created
You can’t perform that action at this time.
0 commit comments