Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

job.sh: avoid overriding environment/shell builtin #2186

Merged

Commits on Mar 2, 2017

  1. job.sh: avoid overriding environment/shell builtin

    HOSTNAME was the main problem reported here. It is apparently a bash
    builtin. To avoid local shell function variables from overriding the
    environment or shell builtin, this change modifies all local shell
    function variables to lower case. All other global shell and environment
    variables should be protected by the `CYLC_` prefix or by setting them
    to their most usual values only if they are not set (e.g. using syntax
    such as `USER=${USER:-$(whoami)}`).
    matthewrmshin committed Mar 2, 2017
    Configuration menu
    Copy the full SHA
    9d3907b View commit details
    Browse the repository at this point in the history