diff --git a/SPF/SPFinit.sas b/SPF/SPFinit.sas index c74d0db..0fbff98 100644 --- a/SPF/SPFinit.sas +++ b/SPF/SPFinit.sas @@ -421,33 +421,33 @@ des = 'Macro to install SAS package, version 20200730. Run %%installPackage() fo %if %superq(packageName) = %then %do; %put ; - %put ###############################################################################; - %put # This is short help information for the installPackage macro #; - %put ###############################################################################; - %put # #; - %put # Macro to install SAS packages, version 20200730 #; - %put # #; - %put # A SAS package is a zip file containing a group #; - %put # of SAS codes (macros, functions, datasteps generating #; - %put # data, etc.) wrapped up together and included by #; - %put # a single load.sas file (also embedded inside the zip). #; - %put # #; - %put # Parameters: #; - %put # #; - %put # packageName Name of a package, e.g. myPackage, #; - %put # Required and not null, default use case: #; - %put # %nrstr(%%installPackage(myPackage)). #; - %put # If empty displays this help information. #; - %put # #; - %put # sourcePath= Location of the package, e.g. "www.some.web.page/" #; - %put # Mind the "/" at the end of the path! #; - %put # Current default location: #; - %put # https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/ #; - %put # #; - %put # replace= With default value of 1 it causes existing package file #; - %put # to be replaceed by new downloaded file. #; - %put # #; - %put ###############################################################################; + %put ########################################################################################; + %put # This is short help information for the installPackage macro #; + %put ########################################################################################; + %put # #; + %put # Macro to install SAS packages, version 20200730 #; + %put # #; + %put # A SAS package is a zip file containing a group #; + %put # of SAS codes (macros, functions, datasteps generating #; + %put # data, etc.) wrapped up together and included by #; + %put # a single load.sas file (also embedded inside the zip). #; + %put # #; + %put # Parameters: #; + %put # #; + %put # packageName Name of a package, e.g. myPackage, #; + %put # Required and not null, default use case: #; + %put # %nrstr(%%installPackage(myPackage)). #; + %put # If empty displays this help information. #; + %put # #; + %put # sourcePath= Location of the package, e.g. "www.some.web.page/" #; + %put # Mind the "/" at the end of the path! #; + %put # Current default location: #; + %put # https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/packages/ #; + %put # #; + %put # replace= With default value of 1 it causes existing package file #; + %put # to be replaceed by new downloaded file. #; + %put # #; + %put ########################################################################################; %put ; %GOTO ENDinstallPackage; %end; @@ -474,7 +474,7 @@ des = 'Macro to install SAS package, version 20200730. Run %%installPackage() fo %if %superq(sourcePath)= %then %do; - %let sourcePath = https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/; + %let sourcePath = https://raw.githubusercontent.com/yabwon/SAS_PACKAGES/master/packages/; %end; filename &in URL "&sourcePath.%lowcase(&packageName.).zip" recfm=N lrecl=1; filename &out "%sysfunc(pathname(packages))/%lowcase(&packageName.).zip" recfm=N lrecl=1;