Skip to content

Commit

Permalink
Script to create a release bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew McCullough committed Jan 9, 2014
1 parent bdd59ad commit d3823b9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@ _site/
/.bundle/
.sass-cache/
*.*~
_release
14 changes: 14 additions & 0 deletions _buildscripts/makerelease
@@ -0,0 +1,14 @@
#!/bin/sh

_buildscripts/vibuild

# Clean out the articles directory
rm -rf _site/articles

# Create the archive
rm -rf _release
mkdir _release
cp -r _site _release/github-training-kit
pushd _release
zip -r github-training-kit.zip github-training-kit/
popd

1 comment on commit d3823b9

@cavaer
Copy link

@cavaer cavaer commented on d3823b9 Feb 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.