Archive: NSIS decends into unspecified directories


NSIS decends into unspecified directories
NSIS decends deep into a directory called 'admin', to grab a file. The file is not specified (directly or indirectly), in any of the File statements, nor is 'admin' or any of admin's subdirectories.

Here are the NSIS File statements

File "program.exe"
File "program.jar"
File /r "Bin"
File /r "Db"
File /r "Docs"
File /r "Http"
File /r "Lib"
File /r "QuarantineProcessors"
File /r "Utils"
File /r "Engines"

How can I stop this behavior? I don't want the admin directory (nor any of its sub-directories, or contents), appearing in the installation directory.


Use:

SetOutPath $INSTDIR\Bin
File /r Bin\*.*

That was the trick that works. Thank you.