From 63223787b5548eba12314ae8ac3ce5149a8d99ca Mon Sep 17 00:00:00 2001 From: gdbtek Date: Tue, 26 Sep 2017 16:13:27 -0700 Subject: [PATCH] bug fixes --- cookbooks/redis/recipes/install.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/redis/recipes/install.bash b/cookbooks/redis/recipes/install.bash index da1cc13b..68ec9d93 100755 --- a/cookbooks/redis/recipes/install.bash +++ b/cookbooks/redis/recipes/install.bash @@ -22,7 +22,7 @@ function install() unzipRemoteFile "${REDIS_DOWNLOAD_URL}" "${tempFolder}" cd "${tempFolder}" make - find "${tempFolder}/src" -xtype f -not -name '*.sh' -perm -u+x -exec cp -f '{}' "${REDIS_INSTALL_BIN_FOLDER}" \; + find "${tempFolder}/src" -xtype f \( -not -name '*.rb' -a -not -name '*.sh' \) -perm -u+x -exec cp -f '{}' "${REDIS_INSTALL_BIN_FOLDER}" \; rm -f -r "${tempFolder}" # Config Server