-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
18 lines (14 loc) · 665 Bytes
/
Justfile
File metadata and controls
18 lines (14 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
_default:
@just --list
# Convert statement from LATIN9 encoding to UTF8 encoding
convert FILE:
iconv -f LATIN9 -t UTF8 {{FILE}} -o {{without_extension(FILE)}}_utf8.{{extension(FILE)}}
_build_release:
zig build release-artifacts
_pack_release:
cd zig-out/release/comdirect-spending-calculator-x86_64-windows && zip ../comdirect-spending-calculator-x86_64-windows.zip comdirect-spending-calculator.exe
tar czvf zig-out/release/comdirect-spending-calculator-x86_64-linux.tar.gz --directory zig-out/release/comdirect-spending-calculator-x86_64-linux .
# Create and pack release artifacts
release:
just _build_release
just _pack_release