instow

:)
git clone https://git.sr.ht/~ashymad/instow
Log | Files | Refs | LICENSE

commit f9c3acd6cb73334f6a7cb584889caf52e65f4369
parent ea29d68af9ca5983112c7090db4ea8334c1b81d6
Author: Szymon Mikulicz <szymon.mikulicz@posteo.net>
Date:   Tue, 17 Mar 2026 22:17:30 +0100

Fix sedi

Diffstat:
Mbootstrap.sh | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bootstrap.sh b/bootstrap.sh @@ -6,9 +6,9 @@ sedi() { file="$1" shift - sed "$@" "$1" > "$1".tmp - cat "$1".tmp > "$1" - rm "$1".tmp + sed "$@" "$file" > "$file".tmp + cat "$file".tmp > "$file" + rm "$file".tmp } BOOTDIR="$PWD"