mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 01:34:40 +01:00
20 lines
547 B
Bash
Executable File
20 lines
547 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
|
php composer-setup.php
|
|
php -r "unlink('composer-setup.php');"
|
|
mv composer.phar /usr/local/bin/composer
|
|
|
|
apk add procps git unzip github-cli openssh
|
|
|
|
rmdir docs
|
|
curl -L https://github.com/danog/MadelineProtoDocs/archive/refs/heads/master.tar.gz | tar -xz
|
|
mv MadelineProtoDocs-master/ docs
|
|
|
|
git submodule init schemas
|
|
git submodule update schemas
|
|
|
|
composer update
|
|
composer build
|
|
|
|
if [ "$(git diff)" != "" ]; then echo "Please run composer build!"; exit 1; fi |