Disable debug

This commit is contained in:
Daniil Gentili 2019-12-26 22:02:36 +01:00
parent 474691d81f
commit 84bee57e0f
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -e
sed 's/^Loop::set.*;//g' -i vendor/amphp/amp/lib/Loop.php
echo 'Loop::set((new DriverFactory())->create());' >> vendor/amphp/amp/lib/Loop.php

View File

@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -e
find vendor/danog/madelineproto -type f -name '*.php' -exec sed 's/: EncryptableSocket/: \\Amp\\Socket\\Socket/g' -i {} +

View File

@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -e
rm -rf vendor/danog/madelineproto/docs

View File

@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -e
# Configure
PHP_MAJOR_VERSION=$(php -r 'echo PHP_MAJOR_VERSION;')