I'm stupid
This commit is contained in:
parent
e000bb610a
commit
048c6d67a1
|
@ -2,7 +2,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net4.7.2</TargetFramework>
|
<TargetFramework>net4.7.2</TargetFramework>
|
||||||
<Version>1.0.0</Version>
|
<Version>1.0.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="PresentationFramework" />
|
<Reference Include="PresentationFramework" />
|
||||||
|
|
|
@ -62,7 +62,7 @@ namespace DeezShade {
|
||||||
|
|
||||||
// File.Copy gives an access denied error, so let's make it ourself
|
// File.Copy gives an access denied error, so let's make it ourself
|
||||||
var src = tempPath + "gshade-shaders";
|
var src = tempPath + "gshade-shaders";
|
||||||
var dst = gameInstall + "gshade-shaders";
|
var dst = Path.Combine(gameInstall, "gshade-shaders");
|
||||||
|
|
||||||
void RecursiveClone(string path) {
|
void RecursiveClone(string path) {
|
||||||
var path2 = Path.Combine(src, path);
|
var path2 = Path.Combine(src, path);
|
||||||
|
|
Loading…
Reference in New Issue