nim-lang / nimble

Package manager for the Nim programming language.
Other
1.24k stars 174 forks source link

skipFiles not working #1226

Open PrasannaVenkadesh opened 2 weeks ago

PrasannaVenkadesh commented 2 weeks ago

skipFiles has no effect with installExt or installDirs.

Sample package structure,

folder
|- app.nimble
|- src
    |- app.nim
    |- appPkg
        |- utils.nim
        |- protocol.nim

Corresponding nimble file

srcDir        = "src"
installExt    = @["nim"]
skipFiles     = @["appPkg/utils.nim"]

Expected Behaviour

All files inside appPkg should be copied except appPkg/utils.nim

Actual Behaviour

appPkg is copied as it is.