Skip to content

Commit

Permalink
update references to base repo
Browse files Browse the repository at this point in the history
  • Loading branch information
mfittko committed Apr 23, 2024
1 parent 80fb4f8 commit 61f2afe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
Download latest version with:

```bash
LATEST_VERSION=`curl -w "%{redirect_url}" -fsS https://github.com/CloudSnorkel/standalone-soci-indexer/releases/latest | grep -oE "[^/]+$"`
curl -fsSL https://github.com/CloudSnorkel/standalone-soci-indexer/releases/download/${LATEST_VERSION}/standalone-soci-indexer_Linux_x86_64.tar.gz | tar xz
LATEST_VERSION=`curl -w "%{redirect_url}" -fsS https://github.com/sofatutor/standalone-soci-indexer/releases/latest | grep -oE "[^/]+$"`
curl -fsSL https://github.com/sofatutor/standalone-soci-indexer/releases/download/${LATEST_VERSION}/standalone-soci-indexer_Linux_x86_64.tar.gz | tar xz
```

Use it to pull an image, index it, and push a SOCI snapshot with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/CloudSnorkel/standalone-soci-indexer
module github.com/sofatutor/standalone-soci-indexer

go 1.18

Expand Down
4 changes: 2 additions & 2 deletions handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"path"
"sort"

"github.com/CloudSnorkel/standalone-soci-indexer/utils/log"
registryutils "github.com/CloudSnorkel/standalone-soci-indexer/utils/registry"
"github.com/sofatutor/standalone-soci-indexer/utils/log"
registryutils "github.com/sofatutor/standalone-soci-indexer/utils/registry"
"github.com/containerd/containerd/images"
"oras.land/oras-go/v2/content/oci"

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
"fmt"
"github.com/CloudSnorkel/standalone-soci-indexer/utils/log"
"github.com/sofatutor/standalone-soci-indexer/utils/log"
"github.com/spf13/cobra"
"os"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion utils/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/aws/aws-sdk-go/service/ecr"
"github.com/awslabs/soci-snapshotter/soci/store"

"github.com/CloudSnorkel/standalone-soci-indexer/utils/log"
"github.com/sofatutor/standalone-soci-indexer/utils/log"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
)

Expand Down

0 comments on commit 61f2afe

Please sign in to comment.