Skip to content

Commit

Permalink
update module name to node-engine
Browse files Browse the repository at this point in the history
[#163880513]
  • Loading branch information
dwillist committed Jun 7, 2019
1 parent d4ecffa commit dc3f033
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
*.tgz
.idea
.bin
nodejs-engine-cnb_*
node-engine-cnb_*
/bin
2 changes: 1 addition & 1 deletion buildpack.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[buildpack]
id = "org.cloudfoundry.nodejs-engine"
id = "org.cloudfoundry.node-engine"
name = "Node Engine Buildpack"
version = "0.0.10"

Expand Down
2 changes: 1 addition & 1 deletion cmd/build/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/buildpack/libbuildpack/buildplan"

"github.com/cloudfoundry/libcfbuildpack/build"
"github.com/cloudfoundry/nodejs-engine-cnb/node"
"github.com/cloudfoundry/node-engine-cnb/node"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/detect/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"path/filepath"

"github.com/cloudfoundry/libcfbuildpack/helper"
"github.com/cloudfoundry/nodejs-engine-cnb/node"
"github.com/cloudfoundry/nodejs-engine-cnb/nvmrc"
"github.com/cloudfoundry/node-engine-cnb/node"
"github.com/cloudfoundry/node-engine-cnb/nvmrc"

"github.com/buildpack/libbuildpack/buildplan"
"github.com/cloudfoundry/libcfbuildpack/detect"
Expand Down
2 changes: 1 addition & 1 deletion cmd/detect/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"

"github.com/buildpack/libbuildpack/buildplan"
"github.com/cloudfoundry/nodejs-engine-cnb/node"
"github.com/cloudfoundry/node-engine-cnb/node"

. "github.com/onsi/gomega"

Expand Down
2 changes: 1 addition & 1 deletion node/node_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package node_test

import (
"github.com/cloudfoundry/nodejs-engine-cnb/node"
"github.com/cloudfoundry/node-engine-cnb/node"
"os"
"path/filepath"
"testing"
Expand Down

0 comments on commit dc3f033

Please sign in to comment.