From 0896fca5f028b8d96c0883cbc01aa22ff0043ed6 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 22 Feb 2018 14:51:05 -0500 Subject: [PATCH] Create script to easily remove existing CI build artifacts. --- etc/ci/clean_build_artifacts.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 etc/ci/clean_build_artifacts.sh diff --git a/etc/ci/clean_build_artifacts.sh b/etc/ci/clean_build_artifacts.sh new file mode 100755 index 00000000000..f3d7d725060 --- /dev/null +++ b/etc/ci/clean_build_artifacts.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +set -o errexit +set -o nounset +set -o pipefail + +rm -rf target/{debug,release,doc,geckolib}