Skip to content

Commit 66d88e4

Browse files
committed
add a basic build script
1 parent 880f36a commit 66d88e4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
if [ "x$1" = "x" ];
3+
then
4+
echo Must specify output directory for zipped bundle
5+
else
6+
git archive --format zip --output $1/javascript-eslint.tmbundle.zip master
7+
fi

0 commit comments

Comments
 (0)