-
Notifications
You must be signed in to change notification settings - Fork 390
Use ubuntu & debian instead of unix & freebsd #7089
New issue
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -140,8 +140,18 @@ public string GetRidsFromPackage(Package package) | |
| { | ||
| if (item.AssetType == AssetType.RuntimeAsset) | ||
| { | ||
| if (!rids.Contains(item.Rid + "-x64")) | ||
| rids.Add(item.Rid + "-x64"); | ||
| string testRid = item.Rid; | ||
| if (testRid == "unix") | ||
| { | ||
| testRid = "ubuntu"; | ||
| } | ||
| else if (testRid == "freebsd") | ||
| { | ||
| testRid = "debian"; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What made you choose I'm a bit surprised we have any packages shipping freebsd assets, I thought freebsd was just a community driven source-build project.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cc: @wfurt regarding packages shipping freebsd assets. |
||
| } | ||
| string testArch = "-x64"; | ||
| if (!rids.Contains(testRid + testArch)) | ||
| rids.Add(testRid + testArch); | ||
| } | ||
| } | ||
| return string.Join(";", rids); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.