From 9da479f3530787bbe0a8308eb0dcb9e05215fb9f Mon Sep 17 00:00:00 2001 From: M Somerville Date: Sat, 28 May 2016 21:25:51 +0100 Subject: [PATCH] Remove duplicate "m" argument m was given for both source-map-file and source-map-root, which meant it did not work. The documentation only gives m for source-map-file, so remove it from source-map-root. --- bin/psass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/psass b/bin/psass index 591ea82..233b13d 100644 --- a/bin/psass +++ b/bin/psass @@ -88,7 +88,7 @@ GetOptions ( 'output-style|t=s' => \ $output_style, 'source-comments|c!' => \ $source_comments, 'source-map-file|m=s' => \ $source_map_file, - 'source-map-root|m=s' => \ $source_map_root, + 'source-map-root=s' => \ $source_map_root, 'source-map-embed|e!' => \ $source_map_embed, 'source-map-contents|s!' => \ $source_map_contents, 'no-source-map-url!' => \ $omit_source_map_url,