mirror of
https://github.com/primer/css.git
synced 2024-12-11 11:16:04 +03:00
13 lines
311 B
Plaintext
13 lines
311 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
asset_path=./static
|
||
|
|
||
|
bundles="styleguide.js styleguide.css"
|
||
|
|
||
|
echo "Grabbing the latest assets from github.com..."
|
||
|
for bundle in $bundles; do
|
||
|
echo "Downloading $bundle -> $asset_path/github/$bundle ..."
|
||
|
curl -fsSLo "$asset_path/github/$bundle" "https://github.com/site/assets/$bundle"
|
||
|
done
|