diff --git a/.github/workflows/check-same-code-base.yml b/.github/workflows/check-same-code-base.yml index 4cf592d7..30c302d3 100644 --- a/.github/workflows/check-same-code-base.yml +++ b/.github/workflows/check-same-code-base.yml @@ -32,3 +32,11 @@ jobs: - name: check-same-code-base run: make check-same-code-base + + - name: check-updater-phar + run: | + make box + ./box info -l updater.phar | grep -v "^Signature Hash" | grep -v "^ Version.php " | grep -v "^Contents: " >updater.old.txt + make updater.phar + ./box info -l updater.phar | grep -v "^Signature Hash" | grep -v "^ Version.php " | grep -v "^Contents: " >updater.txt + diff updater.txt updater.old.txt diff --git a/updater.phar b/updater.phar index f95bfe96..c0a19910 100755 Binary files a/updater.phar and b/updater.phar differ