1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: declaring msg variable prior to set statement in mp_copyfolder.sas

This commit is contained in:
munja
2021-12-13 11:26:17 +00:00
parent 357677e45c
commit 0ce7efee3e
2 changed files with 4 additions and 4 deletions

View File

@@ -54,9 +54,9 @@
/* create folders and copy content */
data _null_;
set work.&tempds;
length msg $256;
length msg $200;
call missing(msg);
set work.&tempds;
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!!')');