Skip to content

Commit 0673b9a

Browse files
committed
secret-hiding: Allow to have cover letter
Since the cover letter does not include any code change, the git apply command denies it by default. But the cover letter would be helpful for readers since it gives many information (including background, motivation, design decision, etc.). To allow to have the cover letter, add --apply-empty option to the git apply command. Signed-off-by: Takahiro Itazuri <itazur@amazon.com>
1 parent 86f6532 commit 0673b9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/hiding_ci/build_and_install_kernel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ confirm() {
7979
apply_patch_file() {
8080
echo "Applying patch:" $(basename $1)
8181

82-
git apply $1
82+
git apply --allow-empty $1
8383
}
8484

8585
apply_patch_or_series() {

0 commit comments

Comments
 (0)