Disable debugging on packages install

This commit is contained in:
Igor
2023-05-20 17:02:09 +02:00
committed by Ricardo Pardini
parent e67215bd6a
commit a3e79a8d7b
2 changed files with 2 additions and 2 deletions

View File

@@ -174,7 +174,7 @@ function kernel_package_hook_helper() {
return 1
}
set -x # Debugging
#set -x # Debugging
$(cat "${contents}")

View File

@@ -132,7 +132,7 @@ function generic_artifact_package_hook_helper() {
#!/bin/bash
echo "Armbian '${artifact_name:?}' for '${artifact_version:?}': '${script}' starting."
set +e # NO ERROR CONTROL, for compatibility with legacy Armbian scripts.
set -x # Debugging
#set -e # Debugging
$(echo "${contents}")