-
Notifications
You must be signed in to change notification settings - Fork 33
/
build_example
executable file
·30 lines (27 loc) · 978 Bytes
/
build_example
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
#!/usr/bin/env bash
# This script is expected to be run on macOS, at the root of the project.
TAG=$(git describe --tags --abbrev=0)
zip -r "inkgd-example-$TAG.zip" "." \
-x ".DS_Store" \
-x ".github/*" \
-x ".mono/*" \
-x ".vscode/*" \
-x ".git/*" \
-x "docs/.vscode/*" \
-x "docs/build/*" \
\
-x "script_templates/*" \
-x "script_templates" \
\
-x ".gitattributes" \
-x ".gitignore" \
-x ".inkgd_compiler.cfg" \
\
-x "ci_export_presets.cfg" \
-x "export_presets.cfg" \
\
-x "CONTRIBUTING.md" \
-x "build_example" \
\
-x "*.pck" \
-x "*.zip" \