inputs isn't a list
This commit is contained in:
parent
7fa2e24315
commit
e9f9b9b093
|
@ -58,7 +58,8 @@
|
||||||
latest-modified-timestamp = head
|
latest-modified-timestamp = head
|
||||||
(sort (a: b: a > b)
|
(sort (a: b: a > b)
|
||||||
(filter (timestamp: timestamp != null)
|
(filter (timestamp: timestamp != null)
|
||||||
(map (input: toInt input.lastModifiedDate) inputs)));
|
(map (input: toInt input.lastModifiedDate)
|
||||||
|
(attrValues inputs))));
|
||||||
|
|
||||||
concat-timestamp = timestamp:
|
concat-timestamp = timestamp:
|
||||||
toInt (substring 0 10 (toString timestamp));
|
toInt (substring 0 10 (toString timestamp));
|
||||||
|
|
Loading…
Reference in New Issue