Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbtek committed Sep 26, 2017
1 parent 438921b commit 6322378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbooks/redis/recipes/install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6322378

Please sign in to comment.