From 5e561ad5b64e7e33781115035f01b3722a0e6191 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Fri, 3 Jan 2025 11:14:52 +0530 Subject: [PATCH] gitignore: Fix cross-platform compatibility for `sed` in-place editing - On macOS, `sed -i extension` requires a space between `-i` and the extension to perform in-place changes without creating a backup file. - On Linux, `sed -i[extension]` or `--in-place[extension]` does not require a space, which makes it difficult to write a single command that works on both platforms. As a result, the JSON backup file generated on macOS with the `-e` extension is ignored. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d1a36e3185..234dcd0f1e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ /docs/package-lock.json /release/ /release-info.json +/release-info.json-e *.crcbundle /tmp-embed/ /RPMS/