import own package
ramboza opened this issue · 1 comments
ramboza commented
Hi !
just one note
if you have import your package inside of your sources, then manul tried to vendor it again.
example:
my package is github.com/demo/abc
inside of main.go i have something like that
package main
import (
"github.com/demo/abc/src/backend/controllers"
"github.com/demo/abc/src/backend/controllers/admin"
"github.com/demo/abc/src/backend/model"
"github.com/labstack/echo"
"github.com/labstack/echo/middleware"
"github.com/labstack/echo/engine/standard"
"golang.org/x/net/websocket"
jwt "github.com/dgrijalva/jwt-go"
"fmt"
"net"
"sync"
"os"
)
and I'll try to run manul -I
then, my package will be 'vendored' inside of my package
jenya@MBP:backend $ manul -I
2016/05/11 08:31:51 skipping github.com/astaxie/beego, already vendored
2016/05/11 08:31:51 skipping github.com/dgrijalva/jwt-go, already vendored
.....
2016/05/11 08:31:51 adding submodule for github.com/demo/abc <---<<<
Thank you!