fix: noconfirm auto-selects first AUR match
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
import sys
|
||||
|
||||
plain_arg = sys.argv[1]
|
||||
_, filename, _ = plain_arg.split(':')
|
||||
try:
|
||||
with open(filename, 'rb') as f:
|
||||
content = f.read()
|
||||
except FileNotFoundError:
|
||||
print('Could not open file. Missing dependency?')
|
||||
sys.exit(1)
|
||||
print('File opened, pretending to send it somewhere.')
|
||||
print(len(content), 'bytes uploaded')
|
||||
Reference in New Issue
Block a user