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
I
installer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
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
redox-os
installer
Commits
4e9d22ad
Commit
4e9d22ad
authored
Apr 07, 2017
by
Jeremy Soller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix installer paths
parent
cfdb2a49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/install.rs
src/install.rs
+1
-1
No files found.
src/install.rs
View file @
4e9d22ad
...
...
@@ -156,7 +156,7 @@ pub fn install(config: Config) -> Result<(), String> {
dir!
(
""
);
for
(
packagename
,
_
package
)
in
config
.packages
{
let
remote_path
=
format!
(
"{}/{}
.tar"
,
pkgutils
::
REPO_REMOTE
,
packagename
);
let
remote_path
=
format!
(
"{}/{}
/{}.tar"
,
"https://static.redox-os.org/pkg"
,
"x86_64-unknown-redox"
,
packagename
);
let
local_path
=
format!
(
"pkg/{}.tar"
,
packagename
);
if
let
Some
(
parent
)
=
Path
::
new
(
&
local_path
)
.parent
()
{
println!
(
"Create package repository {}"
,
parent
.display
());
...
...
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