mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
GP-4971: Fixed a typo in VSCodeProjectScript.java that resulted in the
"Extensions/Ghidra/Skeleton" directory not being found.
This commit is contained in:
parent
a87639a8d7
commit
a3d0b40f36
@ -237,7 +237,7 @@ public class VSCodeProjectScript extends GhidraScript {
|
|||||||
private void writeSampleModule(File installDir, File projectDir) throws IOException {
|
private void writeSampleModule(File installDir, File projectDir) throws IOException {
|
||||||
// Copy Skeleton and rename module
|
// Copy Skeleton and rename module
|
||||||
String skeleton = "Skeleton";
|
String skeleton = "Skeleton";
|
||||||
File skeletonDir = new File(installDir, "Extensions/Ghidra/skeleton");
|
File skeletonDir = new File(installDir, "Extensions/Ghidra/Skeleton");
|
||||||
FileUtils.copyDirectory(skeletonDir, projectDir);
|
FileUtils.copyDirectory(skeletonDir, projectDir);
|
||||||
|
|
||||||
// Rename package
|
// Rename package
|
||||||
|
Loading…
Reference in New Issue
Block a user