mirror of
https://github.com/sasjs/core.git
synced 2026-01-08 18:00:06 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b7718fae6b | ||
|
|
6e3b100170 | ||
|
|
414fe9ebde |
@@ -8,6 +8,12 @@
|
|||||||
|
|
||||||
Requires the server to have SSH keys.
|
Requires the server to have SSH keys.
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_mkdir.sas
|
||||||
|
@li mp_gitadd.sas
|
||||||
|
@li mp_gitreleaseinfo.sas
|
||||||
|
@li mp_gitstatus.sas
|
||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mp_gitadd.sas
|
@li mp_gitadd.sas
|
||||||
@li mp_gitreleaseinfo.sas
|
@li mp_gitreleaseinfo.sas
|
||||||
@@ -124,11 +130,15 @@ data members(compress=char);
|
|||||||
keep name name2 path;
|
keep name name2 path;
|
||||||
run;
|
run;
|
||||||
|
|
||||||
|
proc sort data=members;
|
||||||
|
by name name2;
|
||||||
|
run;
|
||||||
|
|
||||||
%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
|
%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
|
||||||
options nosource nonotes;
|
options nosource nonotes;
|
||||||
data _null_;
|
data _null_;
|
||||||
set members;
|
set members;
|
||||||
by name notsorted;
|
by name;
|
||||||
|
|
||||||
ord + first.name;
|
ord + first.name;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user