From 47a7f1a11d56b3cc5ab3fc132313746ccc2a4c23 Mon Sep 17 00:00:00 2001 From: Operations Research Engineering Software+ Date: Mon, 26 Aug 2019 12:08:50 -0700 Subject: [PATCH] seems like you want to keep the double quotes though, not omit them --- SC2155.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2155.md b/SC2155.md index 4ac4324..0d29175 100644 --- a/SC2155.md +++ b/SC2155.md @@ -9,7 +9,7 @@ export foo="$(mycmd)" ### Correct code: ```sh -foo=$(mycmd) +foo="$(mycmd)" export foo ```