Skip to content

Commit 4a5e915

Browse files
committed
Version 1.0.0
1 parent 812761b commit 4a5e915

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu/.devcontainer/base.Dockerfile
2-
3-
# [Choice] Ubuntu version (use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon): ubuntu-22.04, ubuntu-20.04, ubuntu-18.04
2+
# [Choice] Ubuntu version (use jammy or bionic on local arm64/Apple Silicon): jammy, focal, bionic
43
ARG VARIANT="jammy"
54
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
6-
7-
# [Optional] Uncomment this section to install additional OS packages.
8-
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9-
# && apt-get -y install --no-install-recommends <your-package-list-here>
10-
11-

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Simple CI tool to check that all DMIs in a directory do not have
44
repository = "https://github.com/spacestation13/dmi-duplicate-state-checker"
55
authors = ["ZeWaka <zewakagamer@gmail.com>"]
66
license = "MIT"
7-
version = "0.1.0"
7+
version = "1.0.0"
88
edition = "2021"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# dmi-duplicate-state-checker
22
Simple CI tool to check that all DMIs in a directory do not have duplicate icon states
3+
4+
Example:
5+
6+
![](https://i.imgur.com/ZZt6Enq.png)

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fn main() {
5858
}
5959
println!("Complete, {} duplicates found.", error_count);
6060

61-
if args.donterror {
61+
if !args.donterror {
6262
std::process::exit(error_count);
6363
}
6464
}

0 commit comments

Comments
 (0)