Skip to content

Commit

Permalink
fixup! fixup! Add exec-agent
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhenii Voevodin committed Aug 19, 2016
1 parent eb26d41 commit 9be9ad1
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 9 deletions.
5 changes: 2 additions & 3 deletions exec-agent/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.idea/
*.iml
logs/
machine-agent
exec-agent
g
2 changes: 1 addition & 1 deletion exec-agent/Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions exec-agent/dev.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
##### Link the sources to standard go workspace

```
mkdir $GOPATH/src/github.com/eclipse/che -p
ln -s ~/code/che/exec-agent $GOPATH/src/github.com/eclipse/che/exec-agent
```

##### Install godep
```
go get github.com/tools/godep
```

##### Get all dependencies

```
cd $GOPATH/src/github.com/eclipse/che/exec-agent
$GOPATH/bin/godep restore
```
2 changes: 1 addition & 1 deletion exec-agent/process/file_logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package process_test

import (
"encoding/json"
"github.com/evoevodin/machine-agent/process"
"github.com/eclipse/che/exec-agent/process"
"io/ioutil"
"math/rand"
"os"
Expand Down
2 changes: 1 addition & 1 deletion exec-agent/process/logs_distributor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package process_test

import (
"fmt"
"github.com/evoevodin/machine-agent/process"
"github.com/eclipse/che/exec-agent/process"
"io/ioutil"
"os"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion exec-agent/process/logs_reader_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package process_test

import (
"github.com/evoevodin/machine-agent/process"
"github.com/eclipse/che/exec-agent/process"
"os"
"testing"
"time"
Expand Down
4 changes: 2 additions & 2 deletions exec-agent/process/process_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package process_test

import (
"github.com/evoevodin/machine-agent/op"
"github.com/evoevodin/machine-agent/process"
"github.com/eclipse/che/exec-agent/op"
"github.com/eclipse/che/exec-agent/process"
"testing"
"time"
"os"
Expand Down

0 comments on commit 9be9ad1

Please sign in to comment.