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

Update mp_jsonout.sas

mod option added to the file statement in the last %else %if statement (&action=CLOSE) to avoid output file being overwritten
This commit is contained in:
rafgag
2021-04-08 09:03:05 +02:00
committed by GitHub
parent 456d10a90e
commit 18be74a1c2

View File

@@ -165,8 +165,8 @@
%end;
%else %if &action=CLOSE %then %do;
data _null_;file &jref encoding='utf-8';
data _null_;file &jref encoding='utf-8' mod;
put "}";
run;
%end;
%mend;
%mend;