From f16535f82a2d459a601e9ff3bc3c6ea2e325bfd4 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 20 Sep 2018 08:39:14 -0400 Subject: [PATCH] Fix missing quotes Signed-off-by: Stephen Gallagher --- nodejs.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs.spec b/nodejs.spec index 7a0fa6f..769c9c5 100644 --- a/nodejs.spec +++ b/nodejs.spec @@ -407,7 +407,7 @@ rm -f %{buildroot}/%{_defaultdocdir}/node/lldb_commands.py \ # unnecessary automatic dependencies to be added. Make them not executable. # Skip the npm bin directory or the npm binary will not work. find %{buildroot}%{_prefix}/lib/node_modules/npm \ - -not -path %{buildroot}%{_prefix}/lib/node_modules/npm/bin/* \ + -not -path "%{buildroot}%{_prefix}/lib/node_modules/npm/bin/*" \ -executable -type f \ -exec chmod -x {} \;