Skip to content

Commit

Permalink
stderr and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Feb 21, 2024
1 parent 7e11f6f commit ea15809
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main/installDependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@

extractedPath.rmdir()

print( "ARCHIVE FILENAME", archiveFileName )
print( "SIZE", pathlib.Path( archiveFileName ).stat().st_size )
sys.stderr.write( "ARCHIVE FILENAME {}".format( archiveFileName ) )
sys.stderr.write( "SIZE {}".format( pathlib.Path( archiveFileName ).stat().st_size ) )

# Tell the world

Expand All @@ -128,3 +128,7 @@
archiveDigest = md5.hexdigest()
)
)

# Clean up

pathlib.Path( archiveFileName ).unlink()

0 comments on commit ea15809

Please sign in to comment.