We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
skipFiles has no effect with installExt or installDirs.
skipFiles
installExt
installDirs
folder |- app.nimble |- src |- app.nim |- appPkg |- utils.nim |- protocol.nim
srcDir = "src" installExt = @["nim"] skipFiles = @["appPkg/utils.nim"]
All files inside appPkg should be copied except appPkg/utils.nim
appPkg
appPkg/utils.nim
appPkg is copied as it is.
The text was updated successfully, but these errors were encountered:
It seems like samePaths incorrectly returns false when provided with the absolute path of the file during checkInstallFile checks.
samePaths
checkInstallFile
Sorry, something went wrong.
(fix) packageinfo: checkInstallFile now correctly compares files; fixes
f7079be
#1226 (#1254) * (fix) packageinfo: checkInstallFile now correctly compares files * (fmt) packageinfo: remove trailing newline
Successfully merging a pull request may close this issue.
skipFiles
has no effect withinstallExt
orinstallDirs
.Sample package structure,
Corresponding nimble file
Expected Behaviour
All files inside
appPkg
should be copied exceptappPkg/utils.nim
Actual Behaviour
appPkg
is copied as it is.The text was updated successfully, but these errors were encountered: