Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
delete any meta files for the symlink_temp text files if they happen …
Browse files Browse the repository at this point in the history
…to get created (#806)

bumped package number
  • Loading branch information
StephenHodgson authored Apr 8, 2021
1 parent 2909863 commit 330a066
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Editor/Utilities/SymbolicLinks/SymbolicLinker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,11 @@ private static bool VerifySymbolicLink(string targetAbsolutePath)
{
File.Delete(tempFile);
}

if (File.Exists($"{tempFile}.meta"))
{
File.Delete($"{tempFile}.meta");
}
}
catch (Exception e)
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"Mixed Reality",
"DI"
],
"version": "0.2.9",
"version": "0.2.10",
"unity": "2019.4",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 330a066

Please sign in to comment.