mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
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
|