bpierre / jquery-simple-tooltip

jQuery Simple Tooltip allows you to create simple, accessible and easy-configurable tooltips.

This URL has Read+Write access

Pierre Bertet (author)
Sun Mar 22 12:35:03 -0700 2009
jquery-simple-tooltip / make_zip.sh
100755 19 lines (15 sloc) 0.375 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env sh
 
if [ -z "$1" ]; then
echo "ERROR: need to specify version"
  exit
fi
 
temp_dir="./jquery-simple-tooltip-$1"
 
mkdir $temp_dir
cp ./jquery.simpletooltip.js $temp_dir
cp ./jquery.simpletooltip-min.js $temp_dir
cp ./index.html $temp_dir
cp ./style.css $temp_dir
cp ./MIT-LICENSE.txt $temp_dir
cp ./README $temp_dir
 
zip $temp_dir.zip $temp_dir
rm -rf $temp_dir