You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Debian package build script incorrectly copies the containing
directory to the destination tree rather than just the contents
recursively. This means we end up with:
usr
└── local
├── bin
│ ├── Atlassian.Bitbucket.UI -> ../share/gcm-core/Atlassian.Bitbucket.UI
│ ├── git-credential-manager-core -> ../share/gcm-core/git-credential-manager-core
│ └── GitHub.UI -> ../share/gcm-core/GitHub.UI
└── share
└── gcm-core
** ---> └── Release
├── Atlassian.Bitbucket.UI
├── git-credential-manager-core
├── GitHub.UI
├── libHarfBuzzSharp.so
├── libSkiaSharp.so
└── NOTICE
..rather than:
usr
└── local
├── bin
│ ├── Atlassian.Bitbucket.UI -> ../share/gcm-core/Atlassian.Bitbucket.UI
│ ├── git-credential-manager-core -> ../share/gcm-core/git-credential-manager-core
│ └── GitHub.UI -> ../share/gcm-core/GitHub.UI
└── share
└── gcm-core
├── Atlassian.Bitbucket.UI
├── git-credential-manager-core
├── GitHub.UI
├── libHarfBuzzSharp.so
├── libSkiaSharp.so
└── NOTICE
Since the symlinks are wrong, the installation is broken.
0 commit comments