Skip to content

Commit

Permalink
v0.0.6, regenerate dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDaveHello committed Sep 24, 2016
1 parent b7bf7e1 commit 454e21e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/ColorEcho.bash
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ function echo.LightBoldULBrown
}
function echo.Rainbow
{
if [ "type lolcat" ]; then
if type lolcat > /dev/null 2>&1; then
echo "$@" | lolcat
else
echo "$@"
Expand Down
2 changes: 1 addition & 1 deletion dist/ColorEcho.ksh
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ function echoLightBoldULBrown
}
function echoRainbow
{
if [ "type lolcat" ]; then
if type lolcat 2> /dev/null >&2; then
echo "$@" | lolcat
else
echo "$@"
Expand Down
2 changes: 1 addition & 1 deletion dist/ColorEcho.sh
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ echoLightBoldULBrown()
}
echoRainbow()
{
if [ "type lolcat" ]; then
if type lolcat > /dev/null 2>&1; then
echo "$@" | lolcat
else
echo "$@"
Expand Down
2 changes: 1 addition & 1 deletion dist/ColorEcho.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ function echo.LightBoldULBrown
}
function echo.Rainbow
{
if [ "type lolcat" ]; then
if type lolcat > /dev/null 2>&1; then
echo "$@" | lolcat
else
echo "$@"
Expand Down

0 comments on commit 454e21e

Please sign in to comment.