Skip to content

Commit 7471297

Browse files
authored
Merge pull request BVLC#4455 from ShaggO/spaceSupportILSVRC12MNIST
Support spaces in path when downloading ILSVRC12 and MNIST
2 parents c2a1ecd + d9ad2ef commit 7471297

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

data/ilsvrc12/get_ilsvrc_aux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# - the training splits with labels
99

1010
DIR="$( cd "$(dirname "$0")" ; pwd -P )"
11-
cd $DIR
11+
cd "$DIR"
1212

1313
echo "Downloading..."
1414

data/mnist/get_mnist.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This scripts downloads the mnist data and unzips it.
33

44
DIR="$( cd "$(dirname "$0")" ; pwd -P )"
5-
cd $DIR
5+
cd "$DIR"
66

77
echo "Downloading..."
88

0 commit comments

Comments
 (0)