Slackpkg+ 0.9.7.1 released

Version 0.9.7.1 - 06/Sep/2013
  - fixed a bug on 'slackpkg upgrade file:..'
This commit is contained in:
Matteo Rossini 2013-09-06 12:52:03 +02:00
parent 0835728cb1
commit 07ea634441
3 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,6 @@
Version 0.9.7.1 - 06/Sep/2013
- fixed a bug on 'slackpkg upgrade file:..'
Version 0.9.7 - 05/Sep/2013 Version 0.9.7 - 05/Sep/2013
- Added install/upgrade/reinstall from disk with file:package.txz or dir:path, - Added install/upgrade/reinstall from disk with file:package.txz or dir:path,
and remote with {http,ftp,htts}://site/path/[package.txz], unrepositorized and remote with {http,ftp,htts}://site/path/[package.txz], unrepositorized

View file

@ -1,3 +1,6 @@
Version 0.9.7.1 - 06/Sep/2013
- fixed a bug on 'slackpkg upgrade file:..'
Version 0.9.7 - 05/Sep/2013 Version 0.9.7 - 05/Sep/2013
- Added install/upgrade/reinstall from disk with file:package.txz or dir:path, - Added install/upgrade/reinstall from disk with file:package.txz or dir:path,
and remote with {http,ftp,htts}://site/path/[package.txz], unrepositorized and remote with {http,ftp,htts}://site/path/[package.txz], unrepositorized

View file

@ -508,7 +508,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
if [ ! -d "$localpath" ];then if [ ! -d "$localpath" ];then
continue continue
fi fi
repository=dir$(grep ^SLACKPKGPLUS_dir ${TMPDIR}/pkglist-pre||awk '{print $1}'|uniqwc -l) repository=dir$(grep ^SLACKPKGPLUS_dir ${TMPDIR}/pkglist-pre|awk '{print $1}'|uniq|wc -l)
if [ ${localpath:0:1} != "/" ];then if [ ${localpath:0:1} != "/" ];then
localpath=$(pwd)/$localpath localpath=$(pwd)/$localpath
fi fi