Skip to content

Commit

Permalink
Prerelease 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHood committed Jun 13, 2017
1 parent 87d5a1f commit 5406bab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ GPGit dependencies can be easily installed via [pip](https://pypi.python.org/pyp
```bash
# Install dependencies
sudo apt-get install python3 python3-pip gnupg2 git
VERSION=2.0.2
VERSION=2.0.4

# Download and verify source
wget https://github.com/NicoHood/gpgit/releases/download/${VERSION}/gpgit-${VERSION}.tar.xz
Expand Down
14 changes: 7 additions & 7 deletions gpgit.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,12 +753,12 @@ def __init__(self, tag, config):
self.load_default_config()

# Create array fo steps to analyse and run
step1 = Step1(self.config, self.gpg)
step2 = Step2(self.config, self.gpg)
step3 = Step3(self.config, self.repo)
step4 = Step4(self.config, self.gpg, self.repo, self.assets)
step5 = Step5(self.config, self.assets)
self.steps = [step1, step2, step3, step4, step5]
self.step1 = Step1(self.config, self.gpg)
self.step2 = Step2(self.config, self.gpg)
self.step3 = Step3(self.config, self.repo)
self.step4 = Step4(self.config, self.gpg, self.repo, self.assets)
self.step5 = Step5(self.config, self.assets)
self.steps = [self.step1, self.step2, self.step3, self.step4, self.step5]

def load_git_config(self):
"""Loads configuration settings from git config. Does not overwrite existing settings."""
Expand Down Expand Up @@ -919,7 +919,7 @@ def main():
help='path of the Git project')
parser.add_argument('-n', '--no-github', action='store_false', dest='github',
help='disable Github API functionallity')
parser.add_argument('-a', '--prerelease', action='store_true', help='Flag as Github prerelease')
parser.add_argument('-p', '--prerelease', action='store_true', help='Flag as Github prerelease')

args = parser.parse_args()

Expand Down

0 comments on commit 5406bab

Please sign in to comment.