Skip to content

Commit

Permalink
Fix the project path used by the release command.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartfeenstra committed Mar 10, 2018
1 parent 37531e3 commit a34396d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backuppy/cli/release.py
Expand Up @@ -24,7 +24,7 @@ def main(args):
help='The version to release.')
cli_args = vars(parser.parse_args(args))
version = cli_args['version']
project_path = os.path.dirname(__file__)
project_path = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
_is_ready(project_path, version)
_tag(project_path, version)
_build(project_path)
Expand Down

0 comments on commit a34396d

Please sign in to comment.