Skip to content

Commit

Permalink
Merge pull request #88 from Enverex/patch-1
Browse files Browse the repository at this point in the history
Correct File Extension on Generated Password File
  • Loading branch information
dooly123 authored Dec 27, 2024
2 parents c76d161 + 80b699f commit 8cdbb72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static async Task<List<BasisBundleInformation>> BuildAssetBundle(BasisAss
}
string Pathout = Path.GetDirectoryName(actualFilePath);

await SaveFileAsync(Pathout, "dontuploadmepassword", ".txt", Password);
await SaveFileAsync(Pathout, "dontuploadmepassword", "txt", Password);

OpenRelativePath(Pathout);
}
Expand Down Expand Up @@ -195,4 +195,4 @@ public static void ResetAssetBundleName(string assetPath)
assetImporter.assetBundleName = null;
}
}
}
}

0 comments on commit 8cdbb72

Please sign in to comment.