summaryrefslogtreecommitdiffstats
path: root/taskcluster/docker/recipes/clean_packages.sh
blob: 4265ae559350afadefa649d921239fa6dc2679c6 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

set -e

for task in "$@"; do
  echo "removing package source /etc/apt/sources.list.d/99$task.list"
  rm -f "/etc/apt/sources.list.d/99$task.list"
done
apt-get update