mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 21:36:51 +00:00
RHEL7 with LinuxFilePath gives unknown file type #60
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @claunia on GitHub (Jun 29, 2019).
Originally assigned to: @qmfrederik on GitHub.
from
@claunia commented on GitHub (Jun 29, 2019):
Seems to happen even if it's not in LinuxPath mmm.
@claunia commented on GitHub (Jun 29, 2019):
If I remove LinuxPath it still does not work, if I change Content to None it works but LinuxPath is ignored.
It works if I remove LinuxFileMode.
@franklupo commented on GitHub (Sep 12, 2019):
Same problem.
News?
Best regards
@clemensv commented on GitHub (Dec 4, 2019):
Having that same issue on Fedora. LinuxFileMode causes that error.
@qmfrederik commented on GitHub (Dec 4, 2019):
Thanks. I've been doing some work in this area recently. Let me see if I find some time this week to dive into this.
@qmfrederik commented on GitHub (Dec 5, 2019):
The underlying issue was that when you use
LinuxFileModeto set the lower values of the file mode (e.g. the permissions, such as755), the file type (S_IFREG, or10000in octal) was not set properly. This causedcpioto rightfully complain on some older versions of RHEL/CentOS.This has been fixed with #138 and should be on NuGet soon. I'm also fairly sure this fixes the issue with the sticky bits & friends.