Skip to content

Commit 8094910

Browse files
committed
adapt code for projectatomic github
Signed-off-by: Antonio Murdaca <[email protected]>
1 parent 82b121c commit 8094910

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ RUN set -x \
3838
&& dnf -y update && dnf install -y m2crypto
3939

4040
ENV GOPATH /usr/share/gocode:/go
41-
WORKDIR /go/src/github.com/runcom/skopeo
41+
WORKDIR /go/src/github.com/projectatomic/skopeo
4242

43-
COPY . /go/src/github.com/runcom/skopeo
43+
COPY . /go/src/github.com/projectatomic/skopeo
4444

4545
#ENTRYPOINT ["hack/dind"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
skopeo [![Build Status](https://travis-ci.org/runcom/skopeo.svg?branch=master)](https://travis-ci.org/runcom/skopeo)
1+
skopeo [![Build Status](https://travis-ci.org/projectatomic/skopeo.svg?branch=master)](https://travis-ci.org/projectatomic/skopeo)
22
=
33

44
_Please be aware `skopeo` is still work in progress_
@@ -80,9 +80,9 @@ Building
8080
To build `skopeo` you need at least Go 1.5 because it uses the latest `GO15VENDOREXPERIMENT` flag. Also, make sure to clone the repository in your `GOPATH` - otherwise compilation fails.
8181
```sh
8282
$ cd $GOPATH/src
83-
$ mkdir -p github.com/runcom
84-
$ cd runcom
85-
$ git clone https://github.com/runcom/skopeo
83+
$ mkdir -p github.com/projectatomic
84+
$ cd projectatomic
85+
$ git clone https://github.com/projectatomic/skopeo
8686
$ cd skopeo && make binary
8787
```
8888
Man:

docker/inspect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/docker/docker/registry"
2626
engineTypes "github.com/docker/engine-api/types"
2727
registryTypes "github.com/docker/engine-api/types/registry"
28-
"github.com/runcom/skopeo/types"
28+
"github.com/projectatomic/skopeo/types"
2929
"golang.org/x/net/context"
3030
)
3131

docker/inspect_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/docker/docker/reference"
1717
"github.com/docker/docker/registry"
1818
engineTypes "github.com/docker/engine-api/types"
19-
"github.com/runcom/skopeo/types"
19+
"github.com/projectatomic/skopeo/types"
2020
"golang.org/x/net/context"
2121
)
2222

docker/inspect_v2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"github.com/docker/docker/reference"
2121
"github.com/docker/docker/registry"
2222
engineTypes "github.com/docker/engine-api/types"
23-
"github.com/runcom/skopeo/types"
23+
"github.com/projectatomic/skopeo/types"
2424
"golang.org/x/net/context"
2525
)
2626

hack/make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e
1919

2020
set -o pipefail
2121

22-
export SKOPEO_PKG='github.com/runcom/skopeo'
22+
export SKOPEO_PKG='github.com/projectatomic/skopeo'
2323
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2424
export MAKEDIR="$SCRIPTDIR/make"
2525

inspect.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"strings"
66

77
"github.com/codegangsta/cli"
8-
"github.com/runcom/skopeo/docker"
9-
"github.com/runcom/skopeo/types"
8+
"github.com/projectatomic/skopeo/docker"
9+
"github.com/projectatomic/skopeo/types"
1010
)
1111

1212
type imgKind int

0 commit comments

Comments
 (0)