mirror of
https://github.com/zuno/slackpkgplus
synced 2024-12-26 09:58:43 +01:00
Current - 29/Aug/2013
- fixed a slackpkg bug that does not recreate /var/lib/slackpkg if it does not exists.
This commit is contained in:
parent
5f88cbb071
commit
29722fe22e
3 changed files with 11 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
Current - 29/Aug/2013
|
||||
- fixed a slackpkg bug that does not recreate /var/lib/slackpkg if it does not exists.
|
||||
|
||||
Version 0.9.5 - 28/Aug/2013
|
||||
- fixed a problem with some compat32 packages
|
||||
- fixed a issue about packages selection with the official slackware repository
|
||||
(thanks to phenixia2003)
|
||||
|
||||
Version 0.9.4 - 27/Aug/2013
|
||||
- fixed a issue when a pattern is used multiple times in argument
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
Current - 29/Aug/2013
|
||||
- fixed a slackpkg bug that does not recreate /var/lib/slackpkg if it does not exists.
|
||||
|
||||
Version 0.9.5 - 28/Aug/2013
|
||||
- fixed a problem with some compat32 packages
|
||||
- fixed a issue about packages selection with the official slackware repository
|
||||
|
|
|
@ -8,6 +8,10 @@ fi
|
|||
|
||||
if [ "$SLACKPKGPLUS" = "on" ];then
|
||||
|
||||
if [ ! -e /var/lib/slackpkg ];then
|
||||
mkdir -p /var/lib/slackpkg
|
||||
fi
|
||||
|
||||
# Override the slackpkg getfile().
|
||||
# The new getfile() download all file needed from all defined repositories
|
||||
# then merge all in a format slackpkg-compatible
|
||||
|
|
Loading…
Reference in a new issue