1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-07 17:40:05 +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

@@ -89,7 +89,7 @@ data _null_;
end;
else do;
if maxlen=0 then len='3';
else len=maxlen;
else len=cats(maxlen);
end;
put ' ' name ' ' len;
if last then put ';';