1
0
Fork 0

ACME Docs and changes in Functions.run_bash

This commit is contained in:
Joao Gilberto Magalhaes 2023-07-02 02:07:37 -05:00
parent 014f83332c
commit 9db4d763ec
13 changed files with 127 additions and 99 deletions

7
src/tests/fixtures/run_bash.sh vendored Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
# Just return the exit code
echo "Processing run_bash.sh"
if [ -n "$1" ]; then
exit "$1"
fi