We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ echo '{"title":"code4lib"}' | catmandu convert JSON to PICA --type Plain --fix 'pica_add(title,021A$a)' PICA record must be array reference $ echo '{"title":"code4lib"}' | catmandu convert JSON to PICA --type Plain --fix 'pica_add(title,021A$a,record:"pica")' PICA record must be array reference $echo '{"title":"code4lib"}' | catmandu convert JSON to YAML --fix 'pica_add(title,021A$a)' --- title: code4lib ...
Works if key is defined beforehand:
echo '{"title":"code4lib"}' | catmandu convert JSON to PICA --type Plain --fix 'set_array(record);pica_add(title,021A$a)' 021A $acode4lib
The text was updated successfully, but these errors were encountered:
I'll create pica_update(PATH, value) instead and depracte pica_add because of the order of arguments (see #82).
pica_update(PATH, value)
pica_add
Sorry, something went wrong.
pica_add creates missing record (#77)
b5cec7b
Fixed in 1.14 to be released today.
Checking in changes prior to tagging of version 1.14.
e10394d
Changelog diff is: diff --git a/Changes b/Changes index a229989..5626a88 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Changelog for Catmandu-PICA {{$NEXT}} + +1.14 2023-05-26T06:13:27Z - pica_add creates missing record (#77) 1.13 2023-04-14T09:01:25Z
No branches or pull requests
Works if key is defined beforehand:
The text was updated successfully, but these errors were encountered: