You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
244 B
9 lines
244 B
#!/usr/bin/env bash
|
|
|
|
curl -LO https://github.com/twbs/bootstrap/releases/download/v5.0.0-beta3/bootstrap-5.0.0-beta3-dist.zip
|
|
|
|
unzip bootstrap-5.0.0-beta3-dist.zip
|
|
|
|
mv bootstrap-5.0.0-beta3-dist bootstrap
|
|
|
|
rm -rf bootstrap-5.0.0-beta3-dist.zip
|