Skip to content

Commit

Permalink
Fix bug with config
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Neishkasha committed May 19, 2020
1 parent 250c7d3 commit cefc554
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func loadConfigFromFile() (config *Config, err error) {
err = errors.New("error while parsing config file")
}
}()
if err = decoder.Decode(config); err != nil {
if err = decoder.Decode(&config); err != nil {
return nil, err
}
return config, err
Expand Down
Binary file modified ssh-aws
Binary file not shown.
4 changes: 2 additions & 2 deletions ssh-aws.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class SshAws < Formula
desc "Tool for connection to php servers by private ip"
homepage "https://github.com/AlexanderNeishkasha/ssh-aws"
url "https://github.com/AlexanderNeishkasha/ssh-aws/archive/v0.2.1.tar.gz"
sha256 "08cb31d398aae881eebd4217aaea9aa09c701d4f167f6d345fccd28c34ffcbbd"
url "https://github.com/AlexanderNeishkasha/ssh-aws/archive/v0.2.2.tar.gz"
sha256 "adc46802c3950a4221e48df1c9a23f51ddb90e389d95a23027a7c61b0418cb9b"

depends_on "go" => :build

Expand Down

0 comments on commit cefc554

Please sign in to comment.