mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
* fix apt-get update * Improve diagnostic * handle "IPC connect call failed" * Handle not-existing tool * final refactoring * remove todo * remove which
8 lines
115 B
Bash
8 lines
115 B
Bash
#!/bin/bash -e
|
|
|
|
prefix=/usr/local/bin
|
|
|
|
for tool in apt apt-get apt-fast apt-key;do
|
|
sudo rm -f $prefix/$tool
|
|
done
|