Skip to content

Commit

Permalink
Fix log escape handling
Browse files Browse the repository at this point in the history
  • Loading branch information
xdissent committed Aug 21, 2015
1 parent 0416b6a commit a61715d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ievms.sh
Expand Up @@ -35,7 +35,7 @@ guest_pass="Passw0rd!"
# ## Utilities

# Print a message to the console.
log() { printf "$*\n" ; return $? ; }
log() { printf '%s\n' "$*" ; return $? ; }

# Print an error message to the console and bail out of the script.
fail() { log "\nERROR: $*\n" ; exit 1 ; }
Expand Down

0 comments on commit a61715d

Please sign in to comment.