Skip to content
Snippets Groups Projects
Commit 2087848d authored by Walter Lozano's avatar Walter Lozano
Browse files

Fix tail usage on rust-coreutils


Apertis now uses rust-coreutils, which is not fully compatible with
GNU coreutils. Fix the usage of tail according to rust-coreutils
requirements.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent eb2bc996
No related branches found
No related tags found
1 merge request!28Workaround rust-coreutils issues
......@@ -14,7 +14,7 @@ EOF
get_phase_data()
{
COMMIT_BEFORE=$(head -1 $(get_phase_data_path))
DELAY=$(tail -1 $(get_phase_data_path))
DELAY=$(tail -n 1 $(get_phase_data_path))
}
phase_boot()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment