mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
14 lines
234 B
Text
14 lines
234 B
Text
|
#!/bin/bash
|
||
|
|
||
|
mkdir docs/output
|
||
|
script/grunt docs
|
||
|
git checkout gh-pages --quiet
|
||
|
cp -rf docs/output/* docs
|
||
|
mv -f docs/sidebar.json _data
|
||
|
rm -f docs/api.json
|
||
|
rm -rf docs/output
|
||
|
|
||
|
git add .
|
||
|
printf "Now commit the changes! \n\n"
|
||
|
git status
|