We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc70292 commit 6458ff4Copy full SHA for 6458ff4
bin/compile
@@ -77,7 +77,7 @@ if [[ ! $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
77
fi
78
79
# php-fpm
80
-ln -sv $PWD/sbin/php-fpm $PWD/bin/php-fpm
+ln -sv sbin/php-fpm ../bin/php-fpm
81
82
# composer and phpunit
83
curl -fsSL -o bin/composer http://getcomposer.org/composer.phar
@@ -107,7 +107,9 @@ xdebug.max_nesting_level = 256
107
EOF
108
109
if [ $ALIAS ]; then
110
- ln -s ${INSTALL_DEST}/${VERSION} ${INSTALL_DEST}/${ALIAS}
+ pushd ${INSTALL_DEST}
111
+ ln -s ${VERSION} ${ALIAS}
112
+ popd
113
114
115
pushd /tmp
0 commit comments