1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 11:30:55 +01:00
Summary: Fixed a small bug that caused the catch-all commit to purge previously added symbols in that session.

Test Plan: Re-ran the script, observed corrected behavior.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T4117

Differential Revision: https://secure.phabricator.com/D7597
This commit is contained in:
William R. Otte 2013-11-17 20:19:49 -08:00 committed by epriestley
parent 7d43e59110
commit 74d81f9be0

View file

@ -202,7 +202,7 @@ foreach ($input as $key => $line) {
}
if (count($symbols)) {
commit_symbols($symbols, $project, $args->getArg('no-purge'));
commit_symbols($symbols, $project, $no_purge);
}
echo "Done.\n";