Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Paths won't correct themselves, duh.
Browse files Browse the repository at this point in the history
  • Loading branch information
ziadoz committed May 19, 2019
1 parent b0b17b2 commit 742dc5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"os"
"sync"

"github.com/ziadoz/media-swapper/src/fs"
"github.com/ziadoz/media-swapper/src/pathflag"
"github.com/ziadoz/media-swapper/src/swap"
"github.com/ziadoz/media-swapper/pkg/fs"
"github.com/ziadoz/media-swapper/pkg/pathflag"
"github.com/ziadoz/media-swapper/pkg/swap"
)

const workers int = 4
Expand Down
2 changes: 1 addition & 1 deletion pkg/fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"github.com/ziadoz/media-swapper/src/pathflag"
"github.com/ziadoz/media-swapper/pkg/pathflag"
)

func GetSwappableFiles(src pathflag.Path) ([]string, error) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/swap/swap.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package swap
import (
"os/exec"

"github.com/ziadoz/media-swapper/src/fs"
"github.com/ziadoz/media-swapper/pkg/fs"
)

type Cmd struct {
Expand Down

0 comments on commit 742dc5b

Please # to comment.