{
    "$schema": "https://json-schema.org/draft-07/schema",
    "$id": "https://schemas.conda.io/menuinst-1.schema.json",
    "menu_name": "Example with precommands",
    "menu_items": [
        {
            "name": "Precommands",
            "description": "This examples run some logic before activation.",
            "icon": null,
            "precommand": "export TEST_VAR=\"rhododendron and bees\"",
            "command": [
                "echo",
                "$TEST_VAR"
            ],
            "platforms": {
                "win": {
                    "precommand": "set \"TEST_VAR=rhododendron and bees\"",
                    "command": [
                        "echo",
                        "%TEST_VAR%>",
                        "__OUTPUT_FILE__"
                    ],
                    "description": "A space is needed after the > redirection, but if it's added in the same argument, it will trigger extra quoting that will break the syntax."
                },
                "linux": {},
                "osx": {}
            }
        }
    ]
}
