#7370 closed defect (wontfix)
Shrinksafe: -o flag does not work
Reported by: | Adam Peller | Owned by: | Adam Peller |
---|---|---|---|
Priority: | high | Milestone: | 1.2 |
Component: | ShrinkSafe | Version: | 1.1.1 |
Keywords: | Cc: | James Burke | |
Blocked By: | Blocking: |
Description (last modified by )
correction. James, actually it seems to work fine given one caveat: the input filename must come after the arguments. Once it hits the input file name, it stops processing flags. "-c" is a standalone flag which does not take an argument, so...
this works fine
-c -o output.js input.js
but this doesn't
-c input.js -o output.js
I'm going to mark this as wontfix, unless you think this behavior needs to be changed.
Change History (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
comment:3 Changed 14 years ago by
Oops... put this text in as the description instead of here as a comment.
correction: James, actually it seems to work fine given one caveat: the input filename must come after the arguments. Once it hits the input file name, it stops processing flags. "-c" is a standalone flag which does not take an argument, so...
this works fine
-c -o output.js input.js
but this doesn't
-c input.js -o output.js
I'm going to mark this as wontfix, unless you think this behavior needs to be changed.
apparently, -o only works if it comes before -c It may have always worked this way.