summaryrefslogtreecommitdiffstats
path: root/update_ptxconfigs.sh
blob: bb4f7905708a2edf79635594c2b6f6444f1fb000 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

for i in ptxconfigs/*.ptxconfig; do
	test -e ptxconfig && rm ptxconfig
	ln -sf $i ptxconfig
	echo -e "\n --- Process config : $i\n"
	ptxdist oldconfig
done

rm ptxconfig