1#!/usr/bin/env python3 2# 3# Copyright 2024 Google LLC 4# 5# Use of this source code is governed by a BSD-style license that can be 6# found in the LICENSE file. 7 8 9"""Create the asset.""" 10 11 12import argparse 13import os 14import subprocess 15 16 17URL = 'https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-linux-amd64' 18SHA256 = '5942c9b0934e510ee61eb3e30273f1b3fe2590df93933a93d7c58b81d19c8ff5' 19 20BINARY = URL.split('/')[-1] 21 22 23def create_asset(target_dir): 24 """Create the asset.""" 25 target_file = os.path.join(target_dir, 'jq') 26 subprocess.call(['wget', '--quiet', '--output-document', target_file, URL]) 27 output = subprocess.check_output(['sha256sum', target_file], encoding='utf-8') 28 actual_hash = output.split(' ')[0] 29 if actual_hash != SHA256: 30 raise Exception('SHA256 does not match (%s != %s)' % (actual_hash, SHA256)) 31 subprocess.call(['chmod', 'ugo+x', target_file]) 32 33 34def main(): 35 parser = argparse.ArgumentParser() 36 parser.add_argument('--target_dir', '-t', required=True) 37 args = parser.parse_args() 38 create_asset(args.target_dir) 39 40 41if __name__ == '__main__': 42 main() 43 44