Skip to content

Commit

Permalink
Hash tag consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Mar 24, 2011
1 parent 70559cf commit 91d148f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions redis/bin/install
Expand Up @@ -15,7 +15,7 @@ create_redis_directories()
{
local directory redis_path

log "Creating paths for ${package} ${version}...\n"
log "#creating paths for ${package} ${version}...\n"
# TODO: can likely merge directory creation into path creation.
for directory in "${directories[@]}" ; do
[[ ! -d "$directory" ]] && mkdir -p "$directory"
Expand All @@ -30,6 +30,7 @@ create_redis_directories()

install_init_script()
{
log "#installing init script"
cp -f "$extension_templates_path/redis.init.template" \
"${init_scripts_path}/redis"

Expand All @@ -40,7 +41,7 @@ install_init_script()

cleanup()
{
log "Cleaning up ${package} ${version}...\n"
log "#cleaning install files for ${package} ${version}...\n"
if ! cd "$src_path" ; then
fail "Failed changing into the $src_path source path."
fi
Expand All @@ -59,7 +60,7 @@ download_redis()
fail " Failed changing to $src_path"
fi

log "Downloading ${package_file}...\n"
log "#downloading ${package_file}...\n"

if ! curl -O -L "${redis_url}" ; then
fail "${package_file} failed to download from '${redis_url}'."
Expand All @@ -73,7 +74,7 @@ extract_redis()
fail "Failed changeing to $src_path"
fi

log "Extracting ${package} ${version}...\n"
log "#extracting ${package} ${version}...\n"

if ! tar zxf "${package_file}" ; then
fail "${package_file} failed to extract."
Expand Down

0 comments on commit 91d148f

Please sign in to comment.