switched around binary chmod to avoid error noise
authorChris Koeritz <fred@gruntose.com>
Wed, 24 Oct 2018 03:19:54 +0000 (23:19 -0400)
committerChris Koeritz <fred@gruntose.com>
Wed, 24 Oct 2018 03:19:54 +0000 (23:19 -0400)
scripts/core/generate_aliases.pl

index 6521601c5d707aa5894850a02c8f6e75cf16f256..2f6604cb1a4200f2503c2f538852b6563cc59c00 100644 (file)
@@ -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 \"{}\" ';'");
 }
 
 ##############