Skip to content
This repository has been archived by the owner on Dec 28, 2024. It is now read-only.

Enclose download URL in single quotes #16

Merged
merged 1 commit into from
Dec 2, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion share/library/mac_pkg
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class Archive(object):
os.unlink(file_path)

if do_download:
download_cmd = "%s --insecure --silent --location %s %s %s" % (
download_cmd = "%s --insecure --silent --location %s %s '%s'" % (
self.curl_path, output_opts, curl_opts, url)
# self.module.exit_json(changed=False, msg="download_cmd %s" % download_cmd)
rc, out, err = run_command(self.module, download_cmd, cwd=cwd)
Expand Down