Skip to content
Snippets Groups Projects
Commit 676160ec authored by Alexander A. Klimov's avatar Alexander A. Klimov :frog:
Browse files

Fix "eatmydata: unable to find 'apt-get' in PATH" on Ubuntu Hirsute

parent 95809f91
No related branches found
No related tags found
1 merge request!2Fix "eatmydata: unable to find 'apt-get' in PATH" on Ubuntu Hirsute
Pipeline #17082 passed
...@@ -34,7 +34,9 @@ if [ -n "$ICINGA_BUILD_APTCACHER" ]; then ...@@ -34,7 +34,9 @@ if [ -n "$ICINGA_BUILD_APTCACHER" ]; then
fi fi
echo "[ apt-get update ]" echo "[ apt-get update ]"
sudo $eatmydata apt-get update # absolute apt-get path because of
# "eatmydata: unable to find 'apt-get' in PATH" on Ubuntu Hirsute
sudo $eatmydata /usr/bin/apt-get update
echo "[ Extracting source to build directory ]" echo "[ Extracting source to build directory ]"
( (
......
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