2da7de2fec
* minimal changes to solve most of the cves * cleanup * finished go mod vendor upgrades
10 lines
216 B
Python
10 lines
216 B
Python
import os
|
|
import sys
|
|
|
|
filename = sys.argv[1]
|
|
with open(filename) as f:
|
|
content = f.readlines()
|
|
for l in content:
|
|
name = l.split()[0]
|
|
print(name)
|
|
os.system("go get " + name + "@latest") |