desc_set {desc} | R Documentation |
Set one or more fields in a DESCRIPTION file
Description
Set one or more fields in a DESCRIPTION file
Usage
desc_set(..., check = TRUE, file = ".", normalize = FALSE)
desc_set_list(key, list_value, sep = ", ", file = ".", normalize = FALSE)
Arguments
... |
Values to set, see details below. |
check |
Whether to check the validity of the new fields. |
file |
DESCRIPTION file to use. By default the DESCRIPTION file of the current package (i.e. the package the working directory is part of) is used. |
normalize |
Whether to "normalize" (reorder and reformat) the fields when writing back
the result. See |
key |
Key to set in |
list_value |
Character vector, to collapse in
|
sep |
Separator string for |
Details
desc_set()
supports two forms, the first is two unnamed
arguments: the key and its value to set.
The second form requires named arguments: names are used as keys and values as values to set.
desc_set_list()
collapses a character vector into string,
separating the elements by commas.
See Also
Other simple queries:
desc_del()
,
desc_fields()
,
desc_get_field()
,
desc_get()
,
desc_has_fields()