1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-17 21:40:06 +00:00

fix: ensuring svg rendering from SAS drive

Also reducing put statements in the log
This commit is contained in:
allan
2025-05-30 09:58:06 +01:00
parent e049ab99a7
commit c5ec21c7a0
3 changed files with 16 additions and 8 deletions

View File

@@ -122,7 +122,7 @@ options noquotelenmax;
%let path=%substr(&path,1,%length(&path)-1);
/* ensure folder exists */
%put &sysmacroname: Path &path being checked / created;
%&dbg.put &sysmacroname: Path &path being checked / created;
%mv_createfolder(path=&path)
%local base_uri; /* location of rest apis */
@@ -955,7 +955,7 @@ run;
libname &libref1 clear;
%end;
%put NOTE: &sysmacroname: Job &name successfully created! Check it out:;
%put NOTE-;%put NOTE- &url/SASJobExecution?_PROGRAM=&path/&name;%put NOTE-;
%put &sysmacroname: Job &name created! Check it out:;
%put &url/SASJobExecution?_PROGRAM=&path/&name;
%mend mv_createwebservice;