Merge pull request #2196 from sporkwitch/dev

Update parseAliasDeclaration to match single quote
This commit is contained in:
hydroflame 2021-12-28 10:34:16 -05:00 committed by GitHub
commit b27bb36a95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ export function printAliases(): void {
// Returns true if successful, false otherwise
export function parseAliasDeclaration(dec: string, global = false): boolean {
const re = /^([\w|!|%|,|@|-]+)="(.+)"$/;
const re = /^([\w|!|%|,|@|-]+)=(("(.+)")|('(.+)'))$/;
const matches = dec.match(re);
if (matches == null || matches.length != 3) {
return false;