From 1d80441408cf49b0fe1c43d93b937bd7b74b3345 Mon Sep 17 00:00:00 2001 From: FMotalleb Date: Thu, 31 Oct 2024 14:09:12 +0330 Subject: [PATCH] fix: failed `exec` in `find` cmd --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 7953bd3..6aa858e 100755 --- a/make.sh +++ b/make.sh @@ -72,7 +72,7 @@ Darwin*) esac # replace `require 'gitlab/license/` with `require 'license/` to make it work -find . -type f -exec "$sed_i_cmd" 's/require '\''gitlab\/license\//require_relative '\''license\//g' {} \; +find . -type f -exec $sed_i_cmd 's/require '\''gitlab\/license\//require_relative '\''license\//g' {} \; popd >/dev/null