We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78e03f commit 8a48baeCopy full SHA for 8a48bae
resources/hiding_ci/build_and_install_kernel.sh
@@ -68,24 +68,9 @@ apply_patch_file() {
68
git apply $1
69
}
70
71
-apply_series_mbox() {
72
- git am $1 --empty=drop
73
-}
74
-
75
-apply_series_link() {
76
- patch_url=$(cat $1)
77
- echo "Fetching mbox from:" $patch_url
78
- curl --output lore.mbox.gz "$patch_url/t.mbox.gz"
79
- gunzip lore.mbox
80
- apply_series_mbox lore.mbox
81
- rm lore.mbox
82
83
84
apply_patch_or_series() {
85
case "$1" in
86
*.patch) apply_patch_file $1 ;;
87
- *.mbox) apply_series_mbox $1 ;;
88
- *.lore) apply_series_link $1 ;;
89
*) echo "Skipping non-patch file" $1 ;;
90
esac
91
0 commit comments