From d3325c84bb186cdb59a0b77ec95f85bf22d4392b Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 15 Nov 2017 11:54:52 -0500 Subject: [PATCH] eliminating error message on cygwin --- scripts/core/functions.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 5346e8a2..d88fe6bd 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -478,7 +478,11 @@ if [ -z "$skip_all" ]; then fi # prevent permission foul-ups. - chown -R "$(logname):$(logname)" "$FEISTY_MEOW_LOADING_DOCK"/* "$FEISTY_MEOW_GENERATED_STORE"/* +#hmmm: save error output here instead of muting it. +#hmmm: better yet actually, just don't complain on freaking cygwin, since that's where this happens + chown -R "$(logname):$(logname)" \ + "$FEISTY_MEOW_LOADING_DOCK"/* "$FEISTY_MEOW_GENERATED_STORE"/* 2>/dev/null + test_or_continue "chowning to $(logname) didn't happen." regenerate >/dev/null pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null -- 2.34.1