From 69cd89be9108a1873896bf6fa706939bcd3175a3 Mon Sep 17 00:00:00 2001 From: Austin Robertson Date: Thu, 26 Jul 2018 11:25:08 -0500 Subject: [PATCH] Fix string interpolation from ${foo} to #{foo} --- atomics/T1140/T1140.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atomics/T1140/T1140.yaml b/atomics/T1140/T1140.yaml index b55a9569..d2547722 100644 --- a/atomics/T1140/T1140.yaml +++ b/atomics/T1140/T1140.yaml @@ -19,5 +19,5 @@ atomic_tests: executor: name: command_prompt command: | - certutil.exe -encode ${executable} file.txt - certutil.exe -decode file.txt ${executable} + certutil.exe -encode #{executable} file.txt + certutil.exe -decode file.txt #{executable}