Skip to content

Commit

Permalink
fix: base_uri missing
Browse files Browse the repository at this point in the history
  • Loading branch information
vrh authored and vrh committed Sep 3, 2020
1 parent 029c1a2 commit 8d9b840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion all.sas
Original file line number Diff line number Diff line change
Expand Up @@ -9744,7 +9744,7 @@ options noquotelenmax;
data _null_;
set &libref1..links;
if rel='createChild' then
call symputx('href',quote(trim(href)),'l');
call symputx('href',quote("&base_uri"!!trim(href)),'l');
run;
%end;
%else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;
Expand Down
2 changes: 1 addition & 1 deletion viya/mv_createfolder.sas
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ options noquotelenmax;
data _null_;
set &libref1..links;
if rel='createChild' then
call symputx('href',quote(trim(href)),'l');
call symputx('href',quote("&base_uri"!!trim(href)),'l');
run;
%end;
%else %if &SYS_PROCHTTP_STATUS_CODE=404 %then %do;
Expand Down

0 comments on commit 8d9b840

Please sign in to comment.