From a03cd1bc84742fa7c22be21c9f80f517d0031bdd Mon Sep 17 00:00:00 2001 From: bryan Date: Tue, 12 Nov 2024 00:17:28 -0500 Subject: [PATCH] Fix repo file creation --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 623d7d7..924b0e9 100755 --- a/installJRMC +++ b/installJRMC @@ -651,7 +651,7 @@ install_mc_repo() { esac echo "Adding MC repository file: $repo_file" - sudo tee "$repo_file" &>/dev/null <<< "$repo_text" + echo "$repo_text" | sudo tee "$repo_file" &>/dev/null if ! "${PKG_UPDATE[@]}"; then err "Package update failed!"