Skip to content

Commit

Permalink
Update ImageURI to move images away from packages subdomain.
Browse files Browse the repository at this point in the history
Bumped to 1.4.5.2
  • Loading branch information
JoshStrobl committed Oct 3, 2019
1 parent cf6e139 commit f6ef1c8
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_ROOT := src/
VERSION = 1.4.5.1
VERSION = 1.4.5.2

.DEFAULT_GOAL := all

Expand Down
Binary file removed solbuild-1.4.5.1.tar.xz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/builder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
ImageCompressedSuffix = ".img.xz"

// ImageBaseURI is the storage area for base images
ImageBaseURI = "https://packages.getsol.us/solbuild"
ImageBaseURI = "https://getsol.us/solbuild"

// ImageRootsDir is where updates are performed on base images
ImageRootsDir = "/var/lib/solbuild/roots"
Expand Down
2 changes: 1 addition & 1 deletion src/builder/pkg.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var (
// system.
IndexPackage = Package{
Name: "index",
Version: "1.4.5.1",
Version: "1.4.5.2",
Type: PackageTypeIndex,
Release: 1,
Path: "",
Expand Down
2 changes: 1 addition & 1 deletion src/builder/source/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (s *SimpleSource) download(destination string) error {
hnd.Setopt(curl.OPT_PROGRESSFUNCTION, progress)
// Enforce internal 300 second connect timeout in libcurl
hnd.Setopt(curl.OPT_CONNECTTIMEOUT, 0)
hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.5.1"))
hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.5.2"))

pbar.Start()
defer func() {
Expand Down
2 changes: 1 addition & 1 deletion src/solbuild/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

const (
// SolbuildVersion is the current public version of solbuild
SolbuildVersion = "1.4.5.1"
SolbuildVersion = "1.4.5.2"
)

var versionCmd = &cobra.Command{
Expand Down

0 comments on commit f6ef1c8

Please sign in to comment.