1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: corrected syntax and amended included macros

This commit is contained in:
Trevor Moody
2025-11-19 01:00:21 +00:00
parent 7dd2597041
commit b6f020e897
2 changed files with 3 additions and 2 deletions

View File

@@ -262,7 +262,7 @@ run;
%let fileuri=%trim(%mfv_getpathuri(&path/&name));
/* If properties were found then patch the file to include them */
%if not %mf_isBlank(&viyaProperties) %then %do;
%if not %mf_isBlank(%superq(viyaProperties)) %then %do;
/* Wrap the properties object in a root object also containing the file name */
%local viyapatch;
%let viyapatch = %sysfunc(pathname(work))/%mf_getuniquename(prefix=patch_json_);

View File

@@ -4,7 +4,7 @@
values in SAS macro variables
@details Content is derived from the following endpoint:
"https://<srv>/types/types?filter=contains(extensions,'<some ext>')"
"https://${serverUrl}/types/types?limit=999999"
@param [in] ext File extension to retrieve property info for.
@param [out] propertiesVar= SAS macro variable name that will contain
@@ -27,6 +27,7 @@
@li mf_getvalue.sas
@li mf_getvarlist.sas
@li mf_getvartype.sas
@li mf_nobs.sas
@li mp_abort.sas
*/