Skip to content

Commit e14a3fd

Browse files
committed
fix: non-encrypted env vars were dropped
1 parent efaed5f commit e14a3fd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rooz"
3-
version = "0.66.0"
3+
version = "0.67.0"
44
edition = "2021"
55

66
[dependencies]

src/age_utils.rs

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ pub fn decrypt(
125125
k.to_string(),
126126
std::str::from_utf8(&decrypted[..])?.to_string(),
127127
);
128+
} else {
129+
ret.insert(k.to_string(), v.to_string());
128130
}
129131
}
130132
Ok(ret)

0 commit comments

Comments
 (0)