summaryrefslogtreecommitdiff
path: root/infra/nncc/cmake/packages/TensorFlowProtoText-1.12/make_directories.sh
blob: 1fb2ab6838280d6f1a6bc943be95d8a10cd3a332 (plain)
1
2
3
4
5
6
#!/bin/bash

while [[ $# -ne 0 ]]; do
  DIR=$1; shift
  mkdir -p "${DIR}"
done