Skip to content

Commit

Permalink
Build images in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kus committed Sep 5, 2021
1 parent fe9d656 commit 58c434b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ images:
docker-compose build

stable-images:
TAG=$$(cat version.json | grep version | awk -F\" '{ print $$4 }' | cut -d '.' -f1-2) docker-compose build
TAG=$$(cat version.json | grep version | awk -F\" '{ print $$4 }' | cut -d '.' -f1-2) docker-compose build --parallel

stable-pull:
TAG=$$(cat version.json | grep version | awk -F\" '{ print $$4 }' | cut -d '.' -f1-2) docker-compose pull
Expand Down
2 changes: 1 addition & 1 deletion internal/helpers/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func Slug(alias string) string {
// IsIPFS -
func IsIPFS(hash string) bool {
_, err := cid.Decode(hash)
return err != nil
return err == nil
}

// Escape -
Expand Down

0 comments on commit 58c434b

Please sign in to comment.