File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# ck3json
2
- Convert CK3 save files to JSON
2
+ Convert CK3 text format files to JSON
3
+
4
+ ## Usage
5
+ ` ck3json <file> [grammar] `
6
+
7
+ For more information try ` --help `
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ steps:
35
35
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
36
36
displayName: Install rust (win)
37
37
condition: eq( variables['Agent.OS'], 'Windows_NT' )
38
- - script : cargo rustc --target $(RUST_TARGET) --release --bin ck2json -- -C lto
39
- displayName : Compile ck2json
40
- - publish : ' target/$(RUST_TARGET)/release/ck2json '
38
+ - script : cargo build --target $(RUST_TARGET) --release --bin ck3json --
39
+ displayName : Compile ck3json
40
+ - publish : ' target/$(RUST_TARGET)/release/ck3json '
41
41
displayName : ' Publish artifacts'
42
42
condition : ne( variables['Agent.OS'], 'Windows_NT' )
43
43
artifact : $(artifact)
44
- - publish : ' target\$(RUST_TARGET)\release\ck2json .exe'
44
+ - publish : ' target\$(RUST_TARGET)\release\ck3json .exe'
45
45
displayName : ' Publish artifacts (win)'
46
46
condition : eq( variables['Agent.OS'], 'Windows_NT' )
47
47
artifact : $(artifact)
You can’t perform that action at this time.
0 commit comments