mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 21:27:23 -04:00
9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Packaging gem... \n"
|
|
gem build just-the-docs.gemspec
|
|
|
|
echo "Cleaning up... \n"
|
|
git add *.gem
|
|
git commit -m 'Bump just-the-docs gem package'
|