diff options
author | Qrius <[email protected]> | 2025-05-06 14:22:33 +0200 |
---|---|---|
committer | Qrius <[email protected]> | 2025-05-06 14:23:04 +0200 |
commit | 77e73d70a9b81a7bbd8e49be52612fc62a9f9502 (patch) | |
tree | c816ff6a30dee18e2c701cfd83c3e9104e73e333 /tests | |
parent | 68f3e45b0c9570e4bdf01147f606f04bda6be310 (diff) | |
download | skaldpress-77e73d70a9b81a7bbd8e49be52612fc62a9f9502.tar.gz skaldpress-77e73d70a9b81a7bbd8e49be52612fc62a9f9502.zip |
Disable unsafe code execution by default
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_macro_processor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_macro_processor.sh b/tests/test_macro_processor.sh index daee5d2..96fc04a 100755 --- a/tests/test_macro_processor.sh +++ b/tests/test_macro_processor.sh @@ -9,7 +9,7 @@ test () { var2=$(echo "$file_content" | awk -v RS="\n---\n" 'NR==2') if [ "$ALL_OUTPUT" -eq 0 ]; then - res=$(echo -n "$var1" | smp 2> /dev/null) + res=$(echo -n "$var1" | smp -U 2> /dev/null) else res=$(echo -n "$var1" | smp) fi |