summaryrefslogtreecommitdiff
path: root/test/buildtool/graph_traverser/data/use_env_variables/graph_description
blob: 728ecb166b816208c004ead487c3039c7c6b9556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "blobs": [],
    "trees": {},
    "actions": {
        "write_to_file": {
            "output": ["out"],
            "command": [
                "/bin/sh",
                "-c",
                "set -e\necho -n ${MYCONTENT} > out"
            ],
            "env": {
                "MYCONTENT": "content from environment variable",
                "UNUSED_VAR": "nothing important"
            }
        }
    }
}