Commit: 1cf3ef1219a7e49f31ffd3ac3b82cb9598aa816f Author: Peter Kokot <[email protected]> Tue, 12 Feb 2019 19:14:54 +0100 Committer: Nuno Lopes <[email protected]> Sat, 16 Feb 2019 10:48:10 -0500 Parents: a8971c1fb2550c7b6138ef04ee3ee9d24971eb85 Branches: master
Link: http://git.php.net/?p=web/gcov.git;a=commitdiff;h=1cf3ef1219a7e49f31ffd3ac3b82cb9598aa816f Log: Remove unneeded vcsclean script call The `vcsclean` shell script from the php-src repository is a simple wrapper around the command of `git -Xfd` and is in the process of being moved from the root location in the php-src repository in newer PHP branches to a more dedicated place inside the scripts directory. This particular call here is even not necessary because there is a git clean call done one line below after it. Changed paths: M cron/cron.sh Diff: diff --git a/cron/cron.sh b/cron/cron.sh index 5c575b6..b8a13e9 100755 --- a/cron/cron.sh +++ b/cron/cron.sh @@ -108,7 +108,6 @@ do git clone http://git.php.net/repository/php-src.git -b $GITBRANCH $PHPTAG cd ${PHPTAG} fi - ./vcsclean git clean -xfd > /dev/null cp "../config.$PHPTAG" config.nice -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
