Skip to content

Commit

Permalink
fix: adding proc sort to create_sas_package.sas
Browse files Browse the repository at this point in the history
  • Loading branch information
^ committed May 16, 2024
1 parent 414fe9e commit 6e3b100
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sasjs/utils/create_sas_package.sas
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ data members(compress=char);
keep name name2 path;
run;

proc sort data=members;
by name;
run;

%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
options nosource nonotes;
data _null_;
Expand Down

0 comments on commit 6e3b100

Please sign in to comment.