From 15671fcffb17458ce1c2969b3de13dd0f2be8a09 Mon Sep 17 00:00:00 2001 From: Douglas Schilling Landgraf Date: Thu, 1 Aug 2024 23:13:35 -0400 Subject: [PATCH] adjust shebang Signed-off-by: Douglas Schilling Landgraf --- demo/run-example-memory-exhaustion | 2 +- engine | 2 +- memory-exhaustion/memory-exhaustion | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/demo/run-example-memory-exhaustion b/demo/run-example-memory-exhaustion index 68bf446..d26ac43 100755 --- a/demo/run-example-memory-exhaustion +++ b/demo/run-example-memory-exhaustion @@ -55,7 +55,7 @@ pushd .. 1> /dev/null || exit 1 MEMORY_EXHAUSTION_BASE_CONTAINER_MEMORY_LIMIT=512m \ MEMORY_EXHAUSTION_BASE_CONTAINER_THRESHOLD_PERCENT=90 \ MEMORY_EXHAUSTION_BASE_CONTAINER_WAIT_TIME_BEFORE_STOPPING_NESTED_CONTAINERS_IN_SEC=5 \ - MEMORY_EXHAUSTION_BASE_CONTAINER_SCRIPT_EXHAUST_MEMORY=$(pwd)/memory-exhaustion-script \ + MEMORY_EXHAUSTION_BASE_CONTAINER_SCRIPT_EXHAUST_MEMORY=/memory-exhaustion-script \ MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_VM=1 \ MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_VM_METHOD=write64 \ MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_TIMEOUT=60s \ diff --git a/engine b/engine index d5a539b..2227f2c 100755 --- a/engine +++ b/engine @@ -1,4 +1,4 @@ -#!/bin/bash -xe +#!/bin/bash # shellcheck disable=SC1091,SC2155,SC2086 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/memory-exhaustion/memory-exhaustion b/memory-exhaustion/memory-exhaustion index ba9d350..cad51e6 100755 --- a/memory-exhaustion/memory-exhaustion +++ b/memory-exhaustion/memory-exhaustion @@ -1,4 +1,4 @@ -#!/bin/bash -xe +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.