Skip to content

Commit

Permalink
fix reference for path from lexi to compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp committed Nov 4, 2019
1 parent 38116bd commit c484253
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"time"

"github.com/go-vela/lexi/compiler"
"github.com/go-vela/compiler/compiler"

"github.com/go-vela/server/database"
"github.com/go-vela/server/queue"
Expand Down
2 changes: 1 addition & 1 deletion api/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"time"

"github.com/go-vela/lexi/compiler"
"github.com/go-vela/compiler/compiler"
"github.com/go-vela/server/database"
"github.com/go-vela/server/queue"
"github.com/go-vela/server/source"
Expand Down
4 changes: 2 additions & 2 deletions cmd/server/complier.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
package main

import (
"github.com/go-vela/lexi/compiler"
"github.com/go-vela/lexi/compiler/native"
"github.com/go-vela/compiler/compiler"
"github.com/go-vela/compiler/compiler/native"

"github.com/go-vela/types/constants"

Expand Down
2 changes: 1 addition & 1 deletion router/middleware/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package middleware

import (
"github.com/go-vela/lexi/compiler"
"github.com/go-vela/compiler/compiler"
"github.com/gin-gonic/gin"
)

Expand Down
4 changes: 2 additions & 2 deletions router/middleware/compiler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"reflect"
"testing"

"github.com/go-vela/lexi/compiler"
"github.com/go-vela/lexi/compiler/native"
"github.com/go-vela/compiler/compiler"
"github.com/go-vela/compiler/compiler/native"

"github.com/gin-gonic/gin"

Expand Down

0 comments on commit c484253

Please sign in to comment.