Skip to content

Instantly share code, notes, and snippets.

@mediadoneright
Forked from jwebcat/gist:5122366
Last active September 1, 2019 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mediadoneright/cab4b307c0c7a036b65da3bb51f0e812 to your computer and use it in GitHub Desktop.
Save mediadoneright/cab4b307c0c7a036b65da3bb51f0e812 to your computer and use it in GitHub Desktop.
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/drupal-composer/drupal-project/tarball/8.x
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/drupal-composer/drupal-project/tarball/8.x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment