Skip to content

Commit cf7153f

Browse files
committed
Merge branch 'master' of https://github.com/scorpdx/ck3json into master
2 parents 05541bc + 6511afc commit cf7153f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# 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`

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ steps:
3535
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
3636
displayName: Install rust (win)
3737
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'
4141
displayName: 'Publish artifacts'
4242
condition: ne( variables['Agent.OS'], 'Windows_NT' )
4343
artifact: $(artifact)
44-
- publish: 'target\$(RUST_TARGET)\release\ck2json.exe'
44+
- publish: 'target\$(RUST_TARGET)\release\ck3json.exe'
4545
displayName: 'Publish artifacts (win)'
4646
condition: eq( variables['Agent.OS'], 'Windows_NT' )
4747
artifact: $(artifact)

0 commit comments

Comments
 (0)