Skip to content

Commit

Permalink
update package name for install
Browse files Browse the repository at this point in the history
  • Loading branch information
markus621 committed Aug 28, 2021
1 parent 09d0ab5 commit 1e16404
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 30 deletions.
2 changes: 1 addition & 1 deletion cmd/deb-builder/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"deb-builder/internal/commands"
"github.com/dewep-online/deb-builder/internal/commands"

"github.com/deweppro/go-app/console"
)
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 deb-builder
module github.com/dewep-online/deb-builder

go 1.16

Expand Down
11 changes: 5 additions & 6 deletions internal/commands/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ import (
"os"
"path/filepath"

"deb-builder/pkg/archive"
"deb-builder/pkg/config"
"deb-builder/pkg/control"
"deb-builder/pkg/exec"
"deb-builder/pkg/utils"

"github.com/dewep-online/deb-builder/pkg/archive"
"github.com/dewep-online/deb-builder/pkg/config"
"github.com/dewep-online/deb-builder/pkg/control"
"github.com/dewep-online/deb-builder/pkg/exec"
"github.com/dewep-online/deb-builder/pkg/utils"
"github.com/deweppro/go-app/console"
)

Expand Down
3 changes: 1 addition & 2 deletions internal/commands/config.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package commands

import (
"deb-builder/pkg/config"

"github.com/dewep-online/deb-builder/pkg/config"
"github.com/deweppro/go-app/console"
)

Expand Down
3 changes: 1 addition & 2 deletions internal/commands/pgp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ package commands
import (
"os"

"deb-builder/pkg/pgp"

"github.com/dewep-online/deb-builder/pkg/pgp"
"github.com/deweppro/go-app/console"
)

Expand Down
3 changes: 1 addition & 2 deletions internal/commands/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ package commands
import (
"os"

"deb-builder/pkg/pgp"

"github.com/dewep-online/deb-builder/pkg/pgp"
"github.com/deweppro/go-app/console"
)

Expand Down
3 changes: 1 addition & 2 deletions pkg/archive/deb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ package archive_test
import (
"testing"

"deb-builder/pkg/archive"

"github.com/dewep-online/deb-builder/pkg/archive"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/archive/targz.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"deb-builder/pkg/utils"
"github.com/dewep-online/deb-builder/pkg/utils"
)

type TarGZ struct {
Expand Down
3 changes: 1 addition & 2 deletions pkg/archive/targz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import (
"os"
"testing"

"deb-builder/pkg/archive"

"github.com/dewep-online/deb-builder/pkg/archive"
"github.com/stretchr/testify/require"
)

Expand Down
3 changes: 1 addition & 2 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import (
"os"
"path/filepath"

"deb-builder/pkg/utils"

"github.com/dewep-online/deb-builder/pkg/utils"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/control/control.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"text/template"

"deb-builder/pkg/config"
"github.com/dewep-online/deb-builder/pkg/config"
)

const descriptionMaxLen = 70
Expand Down
2 changes: 1 addition & 1 deletion pkg/control/controlpkg.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package control

import "deb-builder/pkg/config"
import "github.com/dewep-online/deb-builder/pkg/config"

type ControlPkg struct {
conf *config.Config
Expand Down
4 changes: 2 additions & 2 deletions pkg/control/other.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"sort"

"deb-builder/pkg/config"
"deb-builder/pkg/utils"
"github.com/dewep-online/deb-builder/pkg/config"
"github.com/dewep-online/deb-builder/pkg/utils"
)

type (
Expand Down
5 changes: 2 additions & 3 deletions pkg/exec/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ import (
"os"
"os/exec"

"deb-builder/pkg/config"
"deb-builder/pkg/utils"

"github.com/dewep-online/deb-builder/pkg/config"
"github.com/dewep-online/deb-builder/pkg/utils"
"github.com/deweppro/go-app/console"
)

Expand Down
3 changes: 1 addition & 2 deletions pkg/pgp/pgp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import (
"os"
"testing"

"deb-builder/pkg/pgp"

"github.com/dewep-online/deb-builder/pkg/pgp"
"github.com/stretchr/testify/require"
)

Expand Down

0 comments on commit 1e16404

Please sign in to comment.