diff options
author | Erik Schnetter <schnetter@gmail.com> | 2016-06-08 19:14:01 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2016-06-08 19:14:01 -0400 |
commit | 2a4d440003c467f34b072d3128ce4869dc5cd5d2 (patch) | |
tree | 35cbb35e030680e53e901452b69f1e5c26791808 | |
parent | 30e8e77fb60b06535b49d54db62781299f555a8d (diff) | |
download | spack-2a4d440003c467f34b072d3128ce4869dc5cd5d2.tar.gz spack-2a4d440003c467f34b072d3128ce4869dc5cd5d2.tar.bz2 spack-2a4d440003c467f34b072d3128ce4869dc5cd5d2.tar.xz spack-2a4d440003c467f34b072d3128ce4869dc5cd5d2.zip |
Add quotes around file name
$input_log will expand to file names with special characters (e.g. "@"), thus bash requires quotes.
-rwxr-xr-x | lib/spack/env/cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/env/cc b/lib/spack/env/cc index 9758b74f37..a604785904 100755 --- a/lib/spack/env/cc +++ b/lib/spack/env/cc @@ -324,8 +324,8 @@ fi if [[ $SPACK_DEBUG == TRUE ]]; then input_log="$SPACK_DEBUG_LOG_DIR/spack-cc-$SPACK_SHORT_SPEC.in.log" output_log="$SPACK_DEBUG_LOG_DIR/spack-cc-$SPACK_SHORT_SPEC.out.log" - echo "[$mode] $command $input_command" >> $input_log - echo "[$mode] ${full_command[@]}" >> $output_log + echo "[$mode] $command $input_command" >> "$input_log" + echo "[$mode] ${full_command[@]}" >> "$output_log" fi exec "${full_command[@]}" |