Преглед на файлове

Merge pull request #90 from ryansb/fix/specialCharDirectories

Ensure directories can only be made with printable characters
capsense
Jacob Alexander преди 8 години
родител
ревизия
05e8c7d733
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2
    1
      buildall.bash

+ 2
- 1
buildall.bash Целия файл

@@ -31,7 +31,8 @@ main() {
# 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