1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-11 06:24:35 +00:00

fix: updating all.sas

This commit is contained in:
Allan Bowe
2021-12-02 13:29:02 +00:00
parent 3120ba68ad
commit 7ce480db6a

View File

@@ -2779,7 +2779,8 @@ run;
/* create folders and copy content */
data _null_;
set work.&tempds;
filepath2="&target/"!!substr(filepath,%length(&source)+2);
if _n_ = 1 then dpos+sum(length(directory),2);
filepath2="&target/"!!substr(filepath,dpos);
if file_or_folder='folder' then call execute('%mf_mkdir('!!filepath2!!')');
else do;
length fref1 fref2 $8;