build.sh: Replace '-name' with '--name'
authorW. Trevor King <wking@tremily.us>
Fri, 14 Feb 2014 19:47:48 +0000 (11:47 -0800)
committerW. Trevor King <wking@tremily.us>
Fri, 14 Feb 2014 19:47:48 +0000 (11:47 -0800)
commitfe8f2b7a75d7fc95a64d3882a5c89d15978d2ddf
tree43e41da59d075ea725a71c547cbe389d88bd6dbb
parent41b1a2741c6f123a81958673bdcc7323a1546b20
build.sh: Replace '-name' with '--name'

Docker has adopted GNU-style long options with v0.8.0 :) [1]:

  First step toward getopt style flags:

  As we keep compatibility with flags like -dns we can't have -i -t ->
  -it but at least - and -- are now correct.

Strangely, I the short form doesn't always work for me anymore:

  $ docker run -name my-container -hostname my-container wking/gentoo /bin/bash
  flag provided but not defined: -hostname

Note that the -name works fine but the newer --hostname requires the
'--' form.

[1]: https://github.com/dotcloud/docker/pull/3322
     e71dbf4 (update commands.go, 2013-12-23)
build.sh