SAS Packages Framework version 20231024

SAS Packages Framework version 20231024

Modification in `%generatePackage()` macro. Situation when dependencies for package are missing is now handled more gracefully. It's still an error message, but now it ends more elegant way.
This commit is contained in:
Bart Jablonski
2023-10-24 14:48:28 +02:00
parent bd8e378829
commit 9f4143af53
14 changed files with 102 additions and 78 deletions

View File

@@ -16,7 +16,7 @@
/secure
minoperator
/*** HELP END ***/
des = 'Macro to install SAS package, version 20231009. Run %%installPackage() for help info.'
des = 'Macro to install SAS package, version 20231024. Run %%installPackage() for help info.'
;
%if (%superq(packagesNames) = ) OR (%qupcase(&packagesNames.) = HELP) %then
%do;
@@ -31,7 +31,7 @@ des = 'Macro to install SAS package, version 20231009. Run %%installPackage() fo
%put ### This is short help information for the `installPackage` macro #;
%put #--------------------------------------------------------------------------------------------#;;
%put # #;
%put # Macro to install SAS packages, version `20231009` #;
%put # Macro to install SAS packages, version `20231024` #;
%put # #;
%put # A SAS package is a zip file containing a group #;
%put # of SAS codes (macros, functions, data steps generating #;
@@ -483,7 +483,7 @@ des = 'Macro to install SAS package, version 20231009. Run %%installPackage() fo
/* Macro to list SAS packages in packages folder.
Version 20231009
Version 20231024
A SAS package is a zip file containing a group
of SAS codes (macros, functions, data steps generating