grim/containers/package_cloud

A few doc tweaks
draft default tip
2020-05-27, Gary Kramlich
d0c670ada20d
Parents b6ecb26a10fb
Children
A few doc tweaks
  • +1 -1
    README.md
  • +1 -1
    entrypoint.sh
  • --- a/README.md Thu Oct 31 04:49:17 2019 -0500
    +++ b/README.md Wed May 27 21:44:28 2020 -0500
    @@ -11,6 +11,6 @@
    To upload packages use the following command
    ```
    -docker run -it --rm -v <path-to-packages>:/packages -e PACKAGECLOUD_TOKEN=<your api token> push <username>/<repo>/debian/stretch *.deb
    +docker run -it --rm -v <path-to-packages>:/packages -e PACKAGECLOUD_TOKEN=<your api token> push <username>/<repo>/debian/buster *.deb
    ```
    --- a/entrypoint.sh Thu Oct 31 04:49:17 2019 -0500
    +++ b/entrypoint.sh Wed May 27 21:44:28 2020 -0500
    @@ -1,6 +1,6 @@
    #!/bin/sh -e
    -# this entry point serves on purpose, to expand globs passed into to this
    +# this entry point does serves a purpose, to expand globs passed into to this
    # image. Without this, something like
    # `package_cloud push foo/bar/debian/buster *.debs` will not work, as we will
    # be passing a literal `*.debs` to package_cloud which is not what we want.