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

grid/umd-4/features/gip/ce.pan CE_FLAVOR test match against cream or condorce #240

Open
pugnere opened this issue Jun 21, 2021 · 0 comments

Comments

@pugnere
Copy link
Contributor

pugnere commented Jun 21, 2021

variable CE_FLAVOR = {
    if ( is_defined(CE_FLAVOR) && !match(CE_FLAVOR, 'cream') ) {
        error("Invalid value for CE_FLAVOR (" + CE_FLAVOR + "). Must be 'cream'.");
    };
    SELF;
};

to be replaced with :

variable CE_FLAVOR = {
    if ( is_defined(CE_FLAVOR) && (!match(CE_FLAVOR, 'cream') && !match(CE_FLAVOR, 'condorce') ) ) {
        error("Invalid value for CE_FLAVOR (" + CE_FLAVOR + "). Must be 'cream' or 'condorce'.");
    };
    SELF;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant