From bd29e77edb55203b7aecf00fdcbd8048c1df6570 Mon Sep 17 00:00:00 2001 From: yabwon Date: Sun, 10 Nov 2019 17:11:31 +0100 Subject: [PATCH] Update loadpackage.sas --- loadpackage.sas | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/loadpackage.sas b/loadpackage.sas index 9c6625b..71ff7dc 100644 --- a/loadpackage.sas +++ b/loadpackage.sas @@ -65,12 +65,14 @@ TODO: is provided in required version */ )/secure; /*** HELP END ***/ - %local ls_tmp ps_tmp notes_tmp source_tmp; + %local ls_tmp ps_tmp notes_tmp source_tmp fullstimer_tmp stimer_tmp; %let ls_tmp = %sysfunc(getoption(ls)); %let ps_tmp = %sysfunc(getoption(ps)); %let notes_tmp = %sysfunc(getoption(notes)); - %let source_tmp = %sysfunc(getoption(source)); - options NOnotes NOsource ls=MAX ps=MAX; + %let source_tmp = %sysfunc(getoption(source)); + %let stimer_tmp = %sysfunc(getoption(stimer)); + %let fullstimer_tmp = %sysfunc(getoption(fullstimer)); + options NOnotes NOsource ls=MAX ps=MAX NOfullstimer NOstimer; %local _PackageFileref_; %let _PackageFileref_ = P%sysfunc(MD5(%lowcase(&packageName.)),hex7.); @@ -102,7 +104,9 @@ TODO: %end; %else %put ERROR:[&sysmacroname] File "&path./&packageName..zip" does not exist; filename &_PackageFileref_. clear; - options ls = &ls_tmp. ps = &ps_tmp. ¬es_tmp. &source_tmp.; + options ls = &ls_tmp. ps = &ps_tmp. + ¬es_tmp. &source_tmp. + &stimer_tmp. &fullstimer_tmp.; %mend loadPackage; /*** HELP START ***/