From c71076c78c2630301c6e3dc69aba8bf20b704f09 Mon Sep 17 00:00:00 2001 From: joshuah345 Date: Mon, 10 Jan 2022 01:33:48 -0500 Subject: [PATCH] actually use -i for sed --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2eb41c7..a8c9baa 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -28,7 +28,7 @@ jobs: name: Build packages run: | mkdir output - sed "s#Icons:#Icons: https://github.com/hekatos/repo/blob/c5824ef27c413de29ca8e5fbe2bb95ca9d08f5fb/icons/GenshinJailbreakBypass.png#" ./GenshinJailbreakBypass/control + sed -i "s#Icons:#Icons: https://github.com/hekatos/repo/blob/c5824ef27c413de29ca8e5fbe2bb95ca9d08f5fb/icons/GenshinJailbreakBypass.png#" ./GenshinJailbreakBypass/control find . -maxdepth 1 -not -path . -type d -not -name '.git' -not -name 'theos' -exec make -C '{}' package FINALPACKAGE=1 \; find . -type f -iname *.deb -exec mv '{}' output \; -