Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
apk-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
62
Issues
62
List
Boards
Labels
Service Desk
Milestones
Merge Requests
14
Merge Requests
14
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
apk-tools
Commits
9eeb9547
Commit
9eeb9547
authored
Mar 29, 2011
by
Timo Teräs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apk-tools-2.1.0_pre1
parent
e783f20e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile
Makefile
+1
-1
src/fetch.c
src/fetch.c
+3
-4
No files found.
Makefile
View file @
9eeb9547
...
...
@@ -4,7 +4,7 @@
-include
config.mk
PACKAGE
:=
apk-tools
VERSION
:=
2.
0.7
VERSION
:=
2.
1.0_pre1
##
# Default directories
...
...
src/fetch.c
View file @
9eeb9547
...
...
@@ -109,12 +109,11 @@ static int fetch_package(struct fetch_ctx *fctx,
return
0
;
}
apk_message
(
"Downloading %s-"
BLOB_FMT
,
pkg
->
name
->
name
,
BLOB_PRINTF
(
*
pkg
->
version
));
apk_message
(
"Downloading "
PKG_VER_FMT
,
PKG_VER_PRINTF
(
pkg
));
repo
=
apk_db_select_repo
(
db
,
pkg
);
if
(
repo
==
NULL
)
{
apk_error
(
"%s-"
BLOB
_FMT
": package is not currently available"
,
pkg
->
name
->
name
,
BLOB_PRINTF
(
*
pkg
->
version
));
apk_error
(
PKG_VER
_FMT
": package is not currently available"
,
PKG_VER_PRINTF
(
pkg
));
return
-
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment