From ee537048e95d782600a662a7d99a68b764ce1ae8 Mon Sep 17 00:00:00 2001 From: Rootul P Date: Mon, 20 Jan 2025 13:20:06 -0500 Subject: [PATCH] fix: sed command on Linux --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9af76f9bbe..09c5938ce2 100644 --- a/Makefile +++ b/Makefile @@ -351,6 +351,6 @@ configure-v3: sed -i "s/^ttl-num-blocks = .*/ttl-num-blocks = 12/" $(CONFIG_FILE); \ sed -i "s/^ttl-duration = .*/ttl-duration = \"1m15s\"/" $(CONFIG_FILE); \ sed -i "s/^max_tx_bytes = .*/max_tx_bytes = 7897088/" $(CONFIG_FILE); \ - sed -i '' "s/^max_txs_bytes = .*/max_txs_bytes = 39485440/" $(CONFIG_FILE); \ + sed -i "s/^max_txs_bytes = .*/max_txs_bytes = 39485440/" $(CONFIG_FILE); \ fi .PHONY: configure-v3