Skip to content

Commit

Permalink
Fix platform not supported error in build.py (influxdata#4102)
Browse files Browse the repository at this point in the history
  • Loading branch information
otherpirate committed Mar 15, 2019
1 parent ef95252 commit d833657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def main(args):
orig_branch = get_current_branch()

if args.platform not in supported_builds and args.platform != 'all':
logging.error("Invalid build platform: {}".format(target_platform))
logging.error("Invalid build platform: {}".format(args.platform))
return 1

build_output = {}
Expand Down

0 comments on commit d833657

Please sign in to comment.