Last active
February 16, 2017 09:49
-
-
Save BlackIkeEagle/11803b875cd75eef0adb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
chmod +x bin/magento | |
( | |
cd vendor/bin | |
# fix composer | |
rm composer | |
ln -s ../composer/composer/bin/composer | |
chmod +x ../composer/composer/bin/composer | |
# fix jsonlint | |
rm jsonlint | |
ln -s ../seld/jsonlint/bin/jsonlint | |
chmod +x ../seld/jsonlint/bin/jsonlint | |
# fix lessc | |
rm lessc | |
ln -s ../oyejorge/less.php/bin/lessc | |
chmod +x ../oyejorge/less.php/bin/lessc | |
# fix pdepend | |
rm pdepend | |
ln -s ../pdepend/pdepend/src/bin/pdepend | |
chmod +x ../pdepend/pdepend/src/bin/pdepend | |
# fix phpcpd | |
rm phpcpd | |
ln -s ../sebastian/phpcpd/composer/bin/phpcpd | |
chmod +x ../sebastian/phpcpd/composer/bin/phpcpd | |
# fix phpcs | |
rm phpcs | |
ln -s ../squizlabs/php_codesniffer/scripts/phpcs | |
chmod +x ../squizlabs/php_codesniffer/scripts/phpcs | |
# fix php-cs-fixer | |
rm php-cs-fixer | |
ln -s ../fabpot/php-cs-fixer/php-cs-fixer | |
chmod +x ../fabpot/php-cs-fixer/php-cs-fixer | |
# fix phpmd | |
rm phpmd | |
ln -s ../phpmd/phpmd/src/bin/phpmd | |
chmod +x ../phpmd/phpmd/src/bin/phpmd | |
# fix phpunit | |
rm phpunit | |
ln -s ../phpunit/phpunit/phpunit | |
chmod +x ../phpunit/phpunit/phpunit | |
# fix static-review.php | |
rm static-review.php | |
ln -s ../sjparkinson/static-review/bin/static-review.php | |
chmod +x ../sjparkinson/static-review/bin/static-review.php | |
# fix validate-json | |
rm validate-json | |
ln -s ../justinrainbow/json-schema/bin/validate-json | |
chmod +x ../justinrainbow/json-schema/bin/validate-json | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment