Skip to content

Add conda env files + bashrc snippets. #17

@tkittel

Description

@tkittel

We need to provide example conda .yml files (also for simplebuild-dgcode) as well as make sure the following bash snippet is advertised for the ergonomics (they work since bash functions has precedence over PATH items):

function simplebuild()
{
    real_sb_cmd=$(which unwrapped_simplebuild 2>/dev/null) || ( echo "error: simplebuild not available" 1>&2 ; return 1 )
    if [ $? == 0 -a "x${real_sb_cmd}" != "x" ]; then
        "${real_sb_cmd}" "$@" && eval "$(${real_sb_cmd} --env-setup)"
    fi
    unset real_sb_cmd
}
function sb() { simplebuild "$@"; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions