Core Sync Deploy: Replace $'s in commit log (#6310)

* Replace $'s in commit log

* Removed debugging logs
This commit is contained in:
Jason Crist 2022-08-04 03:59:33 -04:00 committed by GitHub
parent 7dad33c16c
commit 5a7a951f14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -398,6 +398,7 @@ async function buildCorePhabricatorCommitMessageSince(theme, sinceRevision){
// Remove any double or back quotes from commit messages
logs = logs.replace(/"/g, '');
logs = logs.replace(/`/g, "'");
logs = logs.replace(/\$/g, "%24");
return `${theme}: Merge latest core changes up to [wp${latestRevision}]