Skip to content

Commit

Permalink
Fix bug when running on new machines
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Hickman committed Jul 31, 2018
1 parent bd9a349 commit 7494f6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raventhemer"
version = "1.3.0"
version = "1.3.1"
authors = ["nicohman <[email protected]>"]
repository="https://github.com/nicohman/raven"
description="A theme manager and switcher for desktop linux"
Expand Down
3 changes: 2 additions & 1 deletion src/bin/raven.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ impl Theme {
}
fn main() {

check_themes();

interpet_args();
}
fn interpet_args() {
Expand All @@ -221,6 +221,7 @@ fn interpet_args() {
{
init();
} else {
check_themes();
let args: Vec<String> = env::args().collect();
let command: &str;
if args.len() < 2 {
Expand Down

0 comments on commit 7494f6c

Please sign in to comment.