summaryrefslogtreecommitdiffstats
path: root/fb
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-01-01 22:33:09 +0100
committerFlorian Pritz <bluewind@xssn.at>2010-01-01 22:33:09 +0100
commite2718a6f416d9e1feeca422f90ae09ce3f07e24e (patch)
treed2eb4d21aa4d12d07376f38f0b043aae2c5522a0 /fb
parent4ac4b115aed79fefc16989164bdab7d84e4b9193 (diff)
downloadbin-e2718a6f416d9e1feeca422f90ae09ce3f07e24e.tar.gz
bin-e2718a6f416d9e1feeca422f90ae09ce3f07e24e.tar.xz
fb: use curl instead of wget
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'fb')
-rwxr-xr-xfb2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb b/fb
index 21255f9..1f3e6ff 100755
--- a/fb
+++ b/fb
@@ -115,7 +115,7 @@ def main():
if re.match('[a-z]+://.+', arg):
os.chdir(tmpdir)
tmpfiles.append(tmpdir)
- Popen(['wget', '-q', arg]).communicate()[0]
+ Popen(['curl', '-#', '-O', arg]).communicate()[0]
for file in os.listdir(tmpdir):
do_upload(file, extension=options.extension)
else: