Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.13'
- '11.0'
MACOSX_SDK_VERSION:
- '10.13'
- '11.0'
channel_sources:
- conda-forge
channel_targets:
Expand Down
1 change: 1 addition & 0 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions LICENSE.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions recipe/00001-fix_ambiguous_call_to_string_split.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- src/shared/Core/Interop/Linux/LinuxConfigParser.cs
+++ src/shared/Core/Interop/Linux/LinuxConfigParser.cs
@@ -31,7 +31,7 @@ public class LinuxConfigParser
{
var result = new Dictionary<string, string>(GitConfigurationKeyComparer.Instance);

- IEnumerable<string> lines = content.Split(['\n'], StringSplitOptions.RemoveEmptyEntries);
+ IEnumerable<string> lines = content.Split('\n', StringSplitOptions.RemoveEmptyEntries);

foreach (string line in lines)
{
9 changes: 7 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
{% set name = "git-credential-manager" %}
{% set version = "2.7.0" %}
{% set version = "2.7.3" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/GitCredentialManager/{{ name }}/archive/v{{ version }}.tar.gz
sha256: 9f7fc2b95cdf82c6bebeb045a553ed27c0130f426bc840e4f2dc41cbb27b6c31
sha256: a9c1d7a89c620bea0df65623f25c62e66122d22557583ab390ed612d544884e9
patches:
- 00000-no_self_contained.patch # [not aarch64 and not arm64]
# This fixes the call to string.Split(), needed for .NET 8.0 but not for .net 4.7.
# When the Windows version upgrades .NET version,
# we can apply this fix to all platforms.
# This fix is also tracked in the upstream.
- 00001-fix_ambiguous_call_to_string_split.patch # [not win]

build:
number: 0
Expand Down