From 63b4145ddeab480e156ebb95701e0d3bbc11a424 Mon Sep 17 00:00:00 2001 From: Andy Bristol Date: Thu, 24 May 2018 13:12:27 -0700 Subject: [PATCH 1/2] [test] packaging: use shell when running commands 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