commit | a9aa002d3b21f248e09c954a36054c5726f40fcd | [log] [tgz] |
---|---|---|
author | Cole Faust <colefaust@google.com> | Mon Apr 18 21:26:40 2022 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Apr 18 21:26:40 2022 +0000 |
tree | d2732385ef580b0cc2af3c2ad0fe4f922629e697 | |
parent | 6337ed39e1397244428efdc94fe8ab1cd32356ab [diff] | |
parent | 0488f3da5b6c0c4f16f6c4241d4bdeec437a7d22 [diff] |
Merge "Implement abspath"
diff --git a/core/product_config.rbc b/core/product_config.rbc index 917475a..928cc55 100644 --- a/core/product_config.rbc +++ b/core/product_config.rbc
@@ -403,7 +403,9 @@ def _abspath(path): """Provided for compatibility, to be removed later.""" - return path + if type(path) == "list": + path = " ".join(path) + return rblf_shell("realpath "+path) def _addprefix(prefix, string_or_list):