-
Notifications
You must be signed in to change notification settings - Fork 125
Conversation
i++ | ||
} | ||
case "-i": | ||
case "-p", "-asmflags", "-buildmode", "-compiler", "-gccgoflags", "-gcflags", "-installsuffix", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How did you come up with this list, and how do we maintain it going forward?
I used the documentation from go help build
. Unfortunately I think we'll have to maintain it manually as there are new releases.
if i+1 < len(args) { | ||
i++ | ||
} | ||
case "-i": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like
-i
isn't actually skipped?
It is, as it's not added to the build flags list. I could put a continue here to make it more clear, though?
4d79db5
to
e454bc8
Compare
The fix for the MacOS issues has been merged; should I started testing on OS X again? |
Yes, please. I've not yet been able to find time to look at this again, I'm afraid. |
I take it this is superseded by #324? |
Ah, right. |
c.f. #170