File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Adding a new activity to Flogo is quite easy and we've outlined the steps for yo
10
10
Before you can get started with this guide you need to make sure you have the right prerequisites installed:
11
11
12
12
* The Go programming language should be [ installed] ( https://golang.org/doc/install ) . This includes setting your GOPATH env var, as well.
13
- * You should have Flogo installed: ` go get github.com/TIBCOSoftware/flogo-cli `
13
+ * You should have Flogo installed: ` go get -u github.com/TIBCOSoftware/flogo-cli/... `
14
14
* And you should have golint installed: ` go get -u github.com/golang/lint/golint `
15
15
16
16
## Creating the basic framework
@@ -100,7 +100,7 @@ func (a *MyActivity) Metadata() *activity.Metadata {
100
100
101
101
// THIS HAS CHANGED
102
102
// Eval implements activity.Activity.Eval
103
- func (a *MyActivity ) Eval (context activity .Context ) (done bool , evalError * activity . Error ) {
103
+ func (a *MyActivity ) Eval (context activity .Context ) (done bool , err error ) {
104
104
// Get the activity data from the context
105
105
name := context.GetInput (" name" ).(string )
106
106
salutation := context.GetInput (" salutation" ).(string )
You can’t perform that action at this time.
0 commit comments