Install Readme Update

This commit is contained in:
Josef 2024-05-04 10:03:10 +02:00
parent 64a8908bb6
commit 62903da2fd
2 changed files with 19 additions and 7 deletions

View File

@ -71,19 +71,28 @@ async function createDirectory()
await fs.cp( npFrom, npTo, { recursive : true } );
let installers =
let installerFiles =
{
"windows" : "install-godot-windows.bat"
"windows" :
[
"install-godot-windows.bat",
"install-godot-windows-readme.txt"
]
};
let installer = installers[ platform ];
let installFrom = "install-scripts/" + installer;
let installers = installerFiles[ platform ];
let installTo = path.join( platformTargetDirectory, installer );
for ( let installer of installers )
{
let installFrom = "install-scripts/" + installer;
console.log( `copying installer: "${installFrom}" >> "${installTo}"` );
let installTo = path.join( platformTargetDirectory, installer );
console.log( `copying installer: "${installFrom}" >> "${installTo}"` );
await fs.cp( installFrom, installTo, { recursive : true } );
}
await fs.cp( installFrom, installTo, { recursive : true } );
}

View File

@ -0,0 +1,3 @@
Copy the directory "godot-rj-nuget-package" into
C:\Users\{YOUR-USER-NAME}\AppData\Roaming\NuGet