mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Bugfix for D7596
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:
parent
7d43e59110
commit
74d81f9be0
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ foreach ($input as $key => $line) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($symbols)) {
|
if (count($symbols)) {
|
||||||
commit_symbols($symbols, $project, $args->getArg('no-purge'));
|
commit_symbols($symbols, $project, $no_purge);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Done.\n";
|
echo "Done.\n";
|
||||||
|
|
Loading…
Reference in a new issue