-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·45 lines (28 loc) · 623 Bytes
/
test.sh
File metadata and controls
executable file
·45 lines (28 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
echo "Building Skript grammar packages."
./build.sh
echo "Installing Skript grammar packages."
# Atom.io
cd syntax-atom/
git init
git add .
git commit -m "Clear working tree pre-publish."
apm link --dev
echo "Installed Atom.io extension."
rm -rf .git/
cd ../
# VS Code
cd syntax-vscode/
git init
git add .
git commit -m "Clear working tree pre-publish."
rm ./*.vsix
vsce package
echo "Packaged VS Code extension."
for FILE in `find . -name 'skript-grammar-*' -type f`
do
echo "Found extension file " $FILE
code --install-extension $FILE
done
echo "Installed VS Code extension."
rm -rf .git/
cd ../