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

Commit

Permalink
riff-buildpack -> libfnbuildpack
Browse files Browse the repository at this point in the history
  • Loading branch information
scothis committed Mar 28, 2019
1 parent f049134 commit 60930e6
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
riff-buildpack
command-function-buildpack

Copyright (c) the original author or authors. All Rights Reserved.

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

import (
"github.com/projectriff/command-function-buildpack/command"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion command/buildpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"github.com/buildpack/libbuildpack/buildplan"
"github.com/cloudfoundry/libcfbuildpack/build"
"github.com/cloudfoundry/libcfbuildpack/detect"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
)

type CommandBuildpack struct {
Expand Down
2 changes: 1 addition & 1 deletion command/buildpack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/cloudfoundry/libcfbuildpack/test"
. "github.com/onsi/gomega"
"github.com/projectriff/command-function-buildpack/command"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
"github.com/sclevine/spec"
"github.com/sclevine/spec/report"
)
Expand Down
2 changes: 1 addition & 1 deletion command/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

"github.com/cloudfoundry/libcfbuildpack/detect"
"github.com/cloudfoundry/libcfbuildpack/helper"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
)

func DetectCommand(d detect.Detect, m function.Metadata) (bool, error) {
Expand Down
2 changes: 1 addition & 1 deletion command/riff_invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/cloudfoundry/libcfbuildpack/detect"
"github.com/cloudfoundry/libcfbuildpack/helper"
"github.com/cloudfoundry/libcfbuildpack/layers"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion detect/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package main

import (
"github.com/projectriff/command-function-buildpack/command"
"github.com/projectriff/riff-buildpack/function"
"github.com/projectriff/libfnbuildpack/function"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require (
github.com/buildpack/libbuildpack v1.10.0
github.com/cloudfoundry/libcfbuildpack v1.39.0
github.com/onsi/gomega v1.4.3
github.com/projectriff/riff-buildpack v0.1.1-0.20190326175330-bbfe9d64eb60
github.com/projectriff/libfnbuildpack v0.2.0
github.com/sclevine/spec v1.2.0
golang.org/x/sys v0.0.0-20190130150945-aca44879d564 // indirect
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
github.com/projectriff/riff-buildpack v0.1.1-0.20190326175330-bbfe9d64eb60 h1:DomAO62bhlMDH9do9oOGQJYu4AOI6H/bUA2uUM1vZYc=
github.com/projectriff/riff-buildpack v0.1.1-0.20190326175330-bbfe9d64eb60/go.mod h1:UMnL88M8FJfSNImSj4HmxMob6nFzijmAhPwOjwvR9GQ=
github.com/projectriff/libfnbuildpack v0.2.0 h1:ILxV7b2xBFcVwEq/TQ0yfMt0K4LVqWHn1Stn+jVzWD4=
github.com/projectriff/libfnbuildpack v0.2.0/go.mod h1:ztJ62jIhseeaeaToKLlpDHpsZhNwpLa5cEAFRwO5cIA=
github.com/sclevine/spec v1.2.0 h1:1Jwdf9jSfDl9NVmt8ndHqbTZ7XCCPbh1jI3hkDBHVYA=
github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24q7p+U=
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
Expand Down

0 comments on commit 60930e6

Please sign in to comment.