From fa126fd853444bed3edaf162cb2a7d62a9a59774 Mon Sep 17 00:00:00 2001 From: Andy Bristol Date: Tue, 29 May 2018 15:17:11 -0700 Subject: [PATCH] [test] packaging: use shell when running commands (#30852) When subprocesses are started with ProcessBuilder, they're forked by the java process directly rather than from a shell, which can be surprising for our use case here in the packaging tests which is similar to scripting. This commit changes the tests to run their subprocess commands in a shell, using the bash -c