Removed quotes around content disposition header in examples

pull/7/head
Ferry Boender 7 years ago
parent 815cd2eb71
commit 5183c6386a
  1. 2
      examples/megacorp_acc/job_download_db.sh
  2. 2
      examples/output_types/job_large_bin.sh

@ -4,7 +4,7 @@ FILESIZE=$(stat -c "%s" megacorp.db)
cat << EOF
HTTP/1.0 200 Ok
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="megacorp.db"
Content-Disposition: attachment; filename=megacorp.db
Content-Length: $FILESIZE
EOF

@ -4,7 +4,7 @@ FILESIZE=$(expr 1024 \* 1000 \* 100)
cat << EOF
HTTP/1.0 200 Ok
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="large_file.dat"
Content-Disposition: attachment; filename=large_file.dat
Content-Length: $FILESIZE
EOF

Loading…
Cancel
Save