Skip to content

Commit 7be2431

Browse files
authored
Merge pull request #34 from bedroge/create_tarball_fix
enclose `accel_subdir` variable in double quotes
2 parents 271821a + 77e9f8f commit 7be2431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create_tarball.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fi
6464

6565
# consider both CPU-only and accelerator subdirectories (if an accelerator was configured)
6666
sw_subdirs=${cpu_arch_subdir}
67-
if [ -n ${accel_subdir} ]; then
67+
if [ -n "${accel_subdir}" ]; then
6868
sw_subdirs="${sw_subdirs} ${cpu_arch_subdir}/${accel_subdir}"
6969
fi
7070
for subdir in ${sw_subdirs}; do

0 commit comments

Comments
 (0)