Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix imports #26

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
go-version: [1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions cmd/escargs/escargs.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"log"
"os"

"github.com/alessio/shellescape"
"al.essio.dev/pkg/shellescape"
)

var (
Expand Down Expand Up @@ -113,5 +113,5 @@ Options:`

func outputVersion() {
fmt.Fprintf(os.Stderr, "escargs version %s\n", version)
fmt.Fprintln(os.Stderr, "Copyright (C) 2020-2023 Alessio Treglia <[email protected]>")
fmt.Fprintln(os.Stderr, "Copyright (C) 2020-2024 Alessio Treglia <[email protected]>")
}
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/alessio/shellescape"
"al.essio.dev/pkg/shellescape"
"github.com/google/shlex"
)

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/alessio/shellescape
module al.essio.dev/pkg/shellescape

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion shellescape.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ POSIX shells.
The original Python package which this work was inspired by can be found
at https://pypi.python.org/pypi/shellescape.
*/
package shellescape // "import gopkg.in/alessio/shellescape.v1"
package shellescape // "import al.essio.dev/pkg/shellescape"

/*
The functionality provided by shellescape.Quote could be helpful
Expand Down
2 changes: 1 addition & 1 deletion shellescape_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package shellescape_test
import (
"testing"

"github.com/alessio/shellescape"
"al.essio.dev/pkg/shellescape"
)

func assertEqual(t *testing.T, s, expected string) {
Expand Down
Loading