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

fix: .sasjslint file and indentation issues

This commit is contained in:
Allan Bowe
2021-04-03 18:10:41 +00:00
parent 1b70205cab
commit 030c4a4fc1
13 changed files with 110 additions and 77 deletions

View File

@@ -10,7 +10,8 @@
First, compile the macros:
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
filename mc url
"https://raw.githubusercontent.com/sasjs/core/main/all.sas";
%inc mc;
Next, create a job (in this case, a web service):
@@ -174,7 +175,7 @@ data _null_;
outfile:write(logloc)
io.close(infile)
io.close(outfile)
';
';
run;
%inc "&fpath3..lua";
/* get log path*/
@@ -228,7 +229,7 @@ data _null_;
io.input(infile)
local resp=json.decode(io.read())
for i, v in pairs(resp["items"]) do
outfile:write(v.line,"\n")
outfile:write(v.line,"\n")
end
io.close(infile)
io.close(outfile)