Skip to content

Commit

Permalink
install_server.sh: add missing bang
Browse files Browse the repository at this point in the history
This was discovered by _bodya and reported in the IRC channel.
Everything worked fine as these scripts are always executed as shell
scripts.

Closes #1728
  • Loading branch information
badboy authored and mattsta committed Aug 2, 2014
1 parent 4aa3300 commit 47cfac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/install_server.sh
Expand Up @@ -152,7 +152,7 @@ rm -f $TMP_FILE
#we hard code the configs here to avoid issues with templates containing env vars
#kinda lame but works!
REDIS_INIT_HEADER=\
"#/bin/sh\n
"#!/bin/sh\n
#Configurations injected by install_server below....\n\n
EXEC=$REDIS_EXECUTABLE\n
CLIEXEC=$CLI_EXEC\n
Expand Down Expand Up @@ -193,7 +193,7 @@ fi
# warning if init info is not available.

cat > ${TMP_FILE} <<EOT
#/bin/sh
#!/bin/sh
#Configurations injected by install_server below....
EXEC=$REDIS_EXECUTABLE
Expand Down

0 comments on commit 47cfac9

Please sign in to comment.