From: Chris Koeritz Date: Wed, 24 Oct 2018 03:19:54 +0000 (-0400) Subject: switched around binary chmod to avoid error noise X-Git-Tag: 2.140.115^2~78 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=d2d0ec214ed52c4d1b631a2ed4b109831ea25b5b switched around binary chmod to avoid error noise --- diff --git a/scripts/core/generate_aliases.pl b/scripts/core/generate_aliases.pl index 6521601c..2f6604cb 100644 --- a/scripts/core/generate_aliases.pl +++ b/scripts/core/generate_aliases.pl @@ -170,7 +170,7 @@ if (! -d $FEISTY_MEOW_LOADING_DOCK) { # set the executable bit for binaries for just this current user. if (-d $FEISTY_MEOW_BINARIES) { - system("chmod -R u+x \"$FEISTY_MEOW_BINARIES\"/*"); + system("find \"$FEISTY_MEOW_BINARIES\" -type f -exec chmod u+x \"{}\" ';'"); } ##############