summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs6
3 files changed, 2 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2914a8957..e83a4ff0a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -49,7 +49,7 @@ dependencies = [
[[package]]
name = "atuin"
-version = "0.2.3"
+version = "0.2.4"
dependencies = [
"chrono",
"directories",
diff --git a/Cargo.toml b/Cargo.toml
index b224ce65c..942a200e5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin"
-version = "0.2.3"
+version = "0.2.4"
authors = ["Ellie Huxtable <e@elm.sh>"]
edition = "2018"
license = "MIT"
diff --git a/src/main.rs b/src/main.rs
index 86540a97a..920cd0a38 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -85,11 +85,5 @@ impl Atuin {
fn main() -> Result<()> {
pretty_env_logger::init();
- let session = env::var("ATUIN_SESSION");
-
- if session.is_err() {
- panic!("Please follow the atuin setup! Missing session.")
- }
-
Atuin::from_args().run()
}