Update execSync command to use backticks instead of single quotes.

This commit is contained in:
يوسف الأوسي
2023-02-14 16:03:31 +10:00
parent b48683755b
commit 0ad4e8314a

View File

@@ -28,7 +28,7 @@ export async function main() {
} }
const diff = execSync( const diff = execSync(
"git diff --cached . ':(exclude)package-lock.json' ':(exclude)yarn.lock'", `git diff --cached . ":(exclude)package-lock.json" ":(exclude)yarn.lock"`,
{ {
encoding: "utf8", encoding: "utf8",
} }