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

fix: adjustments to ensure the tests work, also building all.sas

This commit is contained in:
munja
2022-01-24 12:53:36 +01:00
parent c3b89c7f7d
commit 0e03b06a4b
5 changed files with 223 additions and 151 deletions

View File

@@ -114,6 +114,7 @@ libname &libref1a JSON fileref=&fname1a;
%let found=0;
%put Getting object uri from &libref1a..items;
data _null_;
length contenttype name $1000;
set &libref1a..items;
if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do;
call symputx('uri',cats("&base_uri",uri),'l');