Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions yaml-generation/generateDimensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,6 @@
}


// Post-process to add activity name as comment for `dependsOn`
$dimensionsString = yaml_emit($dimensionsAggregated);
preg_match_all('/\{!([0-9a-z-]{30,})!\}/', $dimensionsString, $matches);
$uuids = array_unique($matches[1]);
foreach ($uuids as $uuid) {
$name = getActivityNameByUuid($uuid, $dimensionsAggregated);
// echo "Adding dependsOn-comment for $uuid: $name\n";
$dimensionsString = str_replace("'{!$uuid!}'", "$uuid # $name", $dimensionsString);
}

// Store generated data with meta document first
$metaDocument = array(
'meta' => array(
Expand Down