Skip to content

Instantly share code, notes, and snippets.

@michaelradionov
Created November 4, 2018 04:29
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 michaelradionov/3b7b1cebdf41eeee197face8ffac3ebe to your computer and use it in GitHub Desktop.
Save michaelradionov/3b7b1cebdf41eeee197face8ffac3ebe to your computer and use it in GitHub Desktop.
Little bash script to download fancy Laravel SVG's to your project when updating to 5.7
mkdir -p public/svg; \
cd public/svg; \
curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/403.svg; \
curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/404.svg; \
curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/500.svg; \
curl -O https://raw.githubusercontent.com/laravel-shift/laravel-5.7/master/public/svg/503.svg; \
cd ../..;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment