diff --git a/install.sh b/install.sh
index 40aa7c0a29349ec2bff733b1f69b06d31992a5c1..14c483050ff72e8a6ab59d6e45b309e3e4b1e47c 100644
--- a/install.sh
+++ b/install.sh
@@ -1,7 +1,8 @@
 #!/bin/bash
 
 function cleanup(){
-  rm -rfv "$(find . -name "build_*" -type d)"
+  # shellcheck disable=SC2046
+  rm -rfv $(find . -name "build_*" -type d)
 }
 
 function build_from_git(){