From 0cc2b0ffb5d3d3e80b7e16ce9e2565ada029c722 Mon Sep 17 00:00:00 2001 From: KAZUKI Otsuhata <7222225+k4zuki02h4t4@users.noreply.github.com> Date: Fri, 13 Oct 2023 23:45:10 +0900 Subject: [PATCH] Deleted debug code. --- build.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/build.php b/build.php index b3c42e9..b567501 100644 --- a/build.php +++ b/build.php @@ -111,7 +111,6 @@ function copyAll( $sourceDirectory, $destinationDirectory ): void { } echo "$pharFile successfully created" . PHP_EOL; -echo "SHA256 : " . strtoupper( hash_file( 'sha256', realpath( $pharFilePath ) ) ) . PHP_EOL; file_put_contents( "$pharFilePath.md5", hash_file( 'md5', realpath( $pharFilePath ) ) ); file_put_contents( "$pharFilePath.sha256", hash_file( 'sha256', realpath( $pharFilePath ) ) ); @@ -129,8 +128,6 @@ function copyAll( $sourceDirectory, $destinationDirectory ): void { $zip->close(); - echo "SHA256 (.zip) : " . strtoupper( hash_file( 'sha256', realpath( $zipPath . '.zip' ) ) ) . PHP_EOL; - file_put_contents( "$zipPath.zip.md5", hash_file( 'md5', realpath( $zipPath . '.zip' ) ) ); file_put_contents( "$zipPath.zip.sha256", hash_file( 'sha256', realpath( $zipPath . '.zip' ) ) ); file_put_contents( "$zipPath.zip.sha512", hash_file( 'sha512', realpath( $zipPath . '.zip' ) ) );