Kaynağa Gözat

Merge pull request #90 from ryansb/fix/specialCharDirectories

Ensure directories can only be made with printable characters
capsense
Jacob Alexander 8 yıl önce
ebeveyn
işleme
05e8c7d733
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2
    1
      buildall.bash

+ 2
- 1
buildall.bash Dosyayı Görüntüle

@@ -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