Merge branch 'chad-gitlab-url-change' into 'master'

Chad gitlab url change

See merge request !28
This commit is contained in:
James Jeffrey
2017-05-30 11:34:22 -07:00
79 changed files with 165 additions and 165 deletions

2
fn/Gopkg.lock generated
View File

@@ -181,7 +181,7 @@ memo = "9e1d9db05f14e4fcb5786440592f93e0baab3f6b9ef00fc46cb39da2dd0d5fce"
version = "v1.19.1"
[[projects]]
name = "gitlab.oracledx.com/odx/functions"
name = "gitlab-odx.oracle.com/odx/functions"
packages = ["api/version"]
revision = "37b53a5820fd2f10a1afa3b04e2423408828afb5"
version = "0.3.7"

View File

@@ -11,7 +11,7 @@ import (
"strings"
"text/template"
"gitlab.oracledx.com/odx/functions/fn/langs"
"gitlab-odx.oracle.com/odx/functions/fn/langs"
)
const (

View File

@@ -18,7 +18,7 @@ import (
"strings"
"github.com/urfave/cli"
"gitlab.oracledx.com/odx/functions/fn/langs"
"gitlab-odx.oracle.com/odx/functions/fn/langs"
)
var (

View File

@@ -9,7 +9,7 @@ import (
functions "github.com/iron-io/functions_go"
"github.com/urfave/cli"
vers "gitlab.oracledx.com/odx/functions/api/version"
vers "gitlab-odx.oracle.com/odx/functions/api/version"
)
var aliases = map[string]cli.Command{
@@ -37,7 +37,7 @@ func newFn() *cli.App {
app.Version = vers.Version
app.Authors = []cli.Author{{Name: "Oracle Corporation"}}
app.Description = "Oracle Functions command line tools"
app.UsageText = `Check the manual at https://gitlab.oracledx.com/odx/functions/blob/master/fn/README.md`
app.UsageText = `Check the manual at https://gitlab-odx.oracle.com/odx/functions/blob/master/fn/README.md`
cli.AppHelpTemplate = `{{.Name}} {{.Version}}{{if .Description}}

View File

@@ -2,9 +2,9 @@
set -ex
cd lambda
./release.sh
cd ..
#cd lambda
#./release.sh
#cd ..
make dep
make release

View File

@@ -5,7 +5,7 @@ import (
"net/url"
"os"
vers "gitlab.oracledx.com/odx/functions/api/version"
vers "gitlab-odx.oracle.com/odx/functions/api/version"
functions "github.com/iron-io/functions_go"
"github.com/urfave/cli"
)