Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 626 → Rev 627

/pkg/trunk/main.c
116,7 → 116,10
/* prepare the zip file and install it */
zipfileidx = pkginstall_preparepackage(pkgname, file, flags, &zipfilefd, dosdir, dirlist);
if (zipfileidx != NULL) {
res = pkginstall_installpackage(pkgname, dosdir, dirlist, zipfileidx, zipfilefd);
/* remove the old version of the package if we are UPDATING it */
res = 0;
if (flags & PKGINST_UPDATE) res = pkgrem(pkgname, dosdir);
if (res == 0) res = pkginstall_installpackage(pkgname, dosdir, dirlist, zipfileidx, zipfilefd);
zip_freelist(&zipfileidx);
}
 
/pkg/trunk/version.h
4,7 → 4,7
#ifndef COMMON_H_SENTINEL
#define COMMON_H_SENTINEL
 
#define PVER "20220203"
#define PVER "20220204"
#define PDATE "2012-2022"
 
#endif