diff options
author | Thomas White <taw@physics.org> | 2021-04-01 12:18:22 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-04-01 15:08:14 +0200 |
commit | 211535aa1d46b4f1ec1a5976be60a4c135605b90 (patch) | |
tree | 2dad13e276db43b9c6edbbfa2a34b4d129cd3aa1 /src/gui_merge.c | |
parent | c5f62f02be9fd29eb3f8f7831ac98617752ea789 (diff) |
GUI: Wrap filenames in job scripts in quotes, where appropriate
This makes it work when the filenames contain spaces.
Diffstat (limited to 'src/gui_merge.c')
-rw-r--r-- | src/gui_merge.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui_merge.c b/src/gui_merge.c index 497d6636..367d303a 100644 --- a/src/gui_merge.c +++ b/src/gui_merge.c @@ -365,13 +365,13 @@ static int write_partialator_script(const char *filename, fprintf(fh, "%s \\\n", exe_path); for ( i=0; i<input->n_streams; i++ ) { - fprintf(fh, "%s \\\n", input->streams[i]); + fprintf(fh, "\"%s\" \\\n", input->streams[i]); } fprintf(fh, " --model=%s", params->model); fprintf(fh, " -j %s", n_thread_str); - fprintf(fh, " -o %s", out_hkl); + fprintf(fh, " -o \"%s\"", out_hkl); fprintf(fh, " -y %s", params->symmetry); fprintf(fh, " --polarisation=%s", params->polarisation); @@ -385,7 +385,7 @@ static int write_partialator_script(const char *filename, } if ( params->custom_split != NULL ) { - fprintf(fh, " --custom-split=%s", params->custom_split); + fprintf(fh, " --custom-split=\"%s\"", params->custom_split); } if ( !params->scale ) { @@ -427,10 +427,10 @@ static void add_process_hkl(FILE *fh, fprintf(fh, "%s \\\n", exe_path); for ( i=0; i<input->n_streams; i++ ) { - fprintf(fh, " %s \\\n", input->streams[i]); + fprintf(fh, " \"%s\" \\\n", input->streams[i]); } - fprintf(fh, " -o %s%s", out_hkl, out_suffix); + fprintf(fh, " -o \"%s%s\"", out_hkl, out_suffix); fprintf(fh, " -y %s", params->symmetry); if ( params->scale ) { |