# HG changeset patch # User Jacob Alexander # Date 1454811677 28800 # Node ID 494cd4d2e4149a3a17d7be884495bb8c04739a34 # Parent b7411ae25432ba33dc66a14e88d1ce252cb58c0a# Parent 47a2714ca802ddbc19f45139e1a0852bde53dcef Merge pull request #90 from ryansb/fix/specialCharDirectories Ensure directories can only be made with printable characters diff -r b7411ae25432 -r 494cd4d2e414 buildall.bash --- a/buildall.bash Sat Feb 06 18:06:37 2016 -0800 +++ b/buildall.bash Sat Feb 06 18:21:17 2016 -0800 @@ -31,7 +31,8 @@ # Create permutation directories # Then run cmake, and run each build permutation # Keeping track of how many builds failed/passed - for module in $scanModules; do + for mod in $scanModules; do + module=$(tr -dc "[:print:]" <<< "$mod") # Create directory, but do not error if it exists already mkdir -p build/$module cd build/$module