mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
8 lines
108 B
Bash
8 lines
108 B
Bash
#!/bin/bash -e
|
|
|
|
prefix=/usr/local/bin
|
|
|
|
for tool in apt apt-get apt-fast;do
|
|
sudo rm -f $prefix/$tool
|
|
done
|