From 20fb83746633b74456679be8ebfdbc73178f9b0d Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Mon, 17 Jun 2024 09:20:12 +0200 Subject: [PATCH] Do not add backup file with sed --- toolchain.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain.sh b/toolchain.sh index 30b10a7..2936db7 100755 --- a/toolchain.sh +++ b/toolchain.sh @@ -50,6 +50,6 @@ fi ## Store build information BUILD_FILE="${PSPDEV}/build.txt" if [[ -f "${BUILD_FILE}" ]]; then - sed -i='' '/^psptoolchain /d' "${BUILD_FILE}" + sed -i'' '/^psptoolchain /d' "${BUILD_FILE}" fi git log -1 --format="psptoolchain %H %cs %s" >> "${BUILD_FILE}"