We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbda4a0 commit 8b4da69Copy full SHA for 8b4da69
mx.fastr/mx_fastr.py
@@ -900,7 +900,7 @@ def build_binary_pkgs(args_in, **kwargs):
900
sys.stdout = sys.__stdout__
901
with open(os.path.join(pkgs_path, 'api-checksum.txt'), 'w') as f:
902
checksum = string_io.getvalue().splitlines(keepends=False)[-1]
903
- print(checksum, f)
+ f.write(checksum)
904
# creates the tarball
905
result_tarball = os.path.join(dest_dir, pkgs_name + '.tar.gz')
906
with tarfile.open(result_tarball, "w:gz") as tar:
0 commit comments