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

Commit

Permalink
Merge pull request #887 from hyperledger/develop
Browse files Browse the repository at this point in the history
Try to release 0.21.0 again
  • Loading branch information
Silas Davis committed Aug 21, 2018
2 parents 508664f + a2f6651 commit 735bcb7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ jobs:
push_docker_dev:
<<: *defaults
steps:
- attach_workspace:
at: .
- setup_remote_docker:
<<: *setup_docker
# Only run on non-pull requests
Expand All @@ -72,6 +70,8 @@ jobs:
release:
<<: *defaults
steps:
- setup_remote_docker:
<<: *setup_docker
- checkout
- run: make release

Expand Down
2 changes: 1 addition & 1 deletion deploy/def/rule/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func stripBraces(str string) string {
return str[start:]
}

var exampleAddress = acm.GeneratePrivateAccountFromSecret("marmot")
var exampleAddress = acm.GeneratePrivateAccountFromSecret("marmot").Address()

// Rules
var (
Expand Down
2 changes: 1 addition & 1 deletion deploy/jobs/job_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func RunJobs(do *def.Packages) error {

err = do.Validate()
if err != nil {
return fmt.Errorf("error validating Burrow package file at %s: %v", do.YAMLPath, err)
return fmt.Errorf("error validating Burrow deploy file at %s: %v", do.YAMLPath, err)
}

for _, job := range do.Package.Jobs {
Expand Down

0 comments on commit 735bcb7

Please sign in to comment.