Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
adranwit committed Dec 28, 2018
1 parent 61e35e2 commit ccaa6ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.23.1
0.24.0
2 changes: 1 addition & 1 deletion static/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
func init() {
var memStorage = storage.NewMemoryService()
{
err := memStorage.Upload("mem://github.com/viant/endly/Version", bytes.NewReader([]byte{48, 46, 50, 51, 46, 49, 10}))
err := memStorage.Upload("mem://github.com/viant/endly/Version", bytes.NewReader([]byte{48, 46, 50, 52, 46, 48, 10}))
if err != nil {
log.Printf("failed to upload: mem://github.com/viant/endly/Version %v", err)
}
Expand Down
2 changes: 1 addition & 1 deletion system/process/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func (s *service) startProcess(context *endly.Context, request *StartRequest) (*
var runRequest = exec.NewRunRequest(request.Target, request.AsSuperUser, changeDirCommand, startCommand)
runRequest.Errors = append(runRequest.Errors, "Exit 1")
if request.Options != nil {
runRequest.Options = request.Options
runRequest.Options = request.Options
}
if err = endly.Run(context, runRequest, nil); err != nil {
return nil, err
Expand Down

0 comments on commit ccaa6ae

Please sign in to comment.