ソースを参照

pkd/debian: Use 'git am -3' to fix some conflicts

Maximilian Luz 4 年 前
コミット
513588effe
2 ファイル変更4 行追加4 行削除
  1. 2 2
      .github/workflows/debian.yml
  2. 2 2
      .github/workflows/debian_lts.yml

+ 2 - 2
.github/workflows/debian.yml

@@ -49,7 +49,7 @@ jobs:
 
         # apply surface build/packaging patches
         for PATCH in ../*.patch; do
-          git am ${PATCH}
+          git am -3 ${PATCH}
         done
 
         git add .
@@ -57,7 +57,7 @@ jobs:
 
         # apply surface patches
         for PATCH in ../../../../patches/${KERNEL_VERSION%.*}/*.patch; do
-          git am < ${PATCH}
+          git am -3 ${PATCH}
         done
 
         git add .

+ 2 - 2
.github/workflows/debian_lts.yml

@@ -49,7 +49,7 @@ jobs:
 
         # apply surface build/packaging patches
         for PATCH in ../*.patch; do
-          git am ${PATCH}
+          git am -3 ${PATCH}
         done
 
         git add .
@@ -57,7 +57,7 @@ jobs:
 
         # apply surface patches
         for PATCH in ../../../../patches/${KERNEL_VERSION%.*}/*.patch; do
-          git am ${PATCH}
+          git am -3 ${PATCH}
         done
 
         git add .