Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bodyfile btime #248

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ To report incidents or to appeal reports of incidents, send email to iplsdk@linu

## Credits

This code is based on the [Hyperledger Project's CoC](https://github.com/hyperledger/hyperledger/wiki/Hyperledger-Project-Code-of-Conduct), [W3Cs Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc) with some additions from the [Cloud Foundry](https://www.cloudfoundry.org/)‘s Code of Conduct.
This code is based on the [Hyperledger Project's CoC](https://github.com/hyperledger/hyperledger/wiki/Hyperledger-Project-Code-of-Conduct), [W3C's Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc) with some additions from the [Cloud Foundry](https://www.cloudfoundry.org/)‘s Code of Conduct.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ git checkout -b my-feature-branch develop

1. Test your code against as many systems as you can. For instance, your code can fully work on a Linux but not on a FreeBSD system.

1. Commit your changes using a descriptive commit message that follows our [commit message guidelines](#commit-message-guidelines). *Dont commit code as an unrecognized author. Having commits with unrecognized authors makes it more difficult to track who wrote which part of the code. Ensure your Git client is configured with the correct email address and linked to your GitHub user.*
1. Commit your changes using a descriptive commit message that follows our [commit message guidelines](#commit-message-guidelines). *Don't commit code as an unrecognized author. Having commits with unrecognized authors makes it more difficult to track who wrote which part of the code. Ensure your Git client is configured with the correct email address and linked to your GitHub user.*

```shell
git commit -s
Expand Down
7 changes: 3 additions & 4 deletions lib/build_artifact_list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ _build_artifact_list()
__ba_OIFS="${IFS}"; IFS="
";
for __ba_item in ${__ba_artifact_list}; do
if [ -f "${__ba_item}" ]; then
if grep -q -E "supported_os:.*all|${__ba_operating_system}" "${__ba_item}" 2>/dev/null || ${__UAC_IGNORE_OPERATING_SYSTEM:-false}; then
echo "${__ba_item}"
fi
if [ -f "${__ba_item}" ] \
&& { grep -q -E "supported_os:.*all|${__ba_operating_system}" "${__ba_item}" 2>/dev/null || [ "${__UAC_IGNORE_OPERATING_SYSTEM:-false}" = true ]; }; then
echo "${__ba_item}"
fi
done
IFS="${__ba_OIFS}"
Expand Down
2 changes: 1 addition & 1 deletion lib/find_based_collector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ _find_based_collector()
-e 's:"|:|:g' \
-e 's:" -> ": -> :' \
-e "s:\`::g" \
-e "s:|.$:|0:" \
-e "s:|.\{1,4\}$:|0:" \
>>"${__fc_output_directory}/${__fc_output_file}"
else
_log_msg ERR "_find_based_collector: cannot run stat collector. Target system has neither 'stat', 'statx' nor 'perl' tool available"
Expand Down
2 changes: 1 addition & 1 deletion lib/output_exists.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _output_exists()
__of_output_file="${1:-}"

if [ -d "${__of_output_file}" ]; then
_error_msg "cannot create output directory ${__of_output_file}: Directory exists"
_error_msg "cannot create output directory '${__of_output_file}': Directory exists"
return 0
elif [ -f "${__of_output_file}" ]; then
_error_msg "cannot create output file '${__of_output_file}': File exists"
Expand Down