Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix zplug (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish authored Nov 4, 2020
1 parent 35c47a5 commit 1bf33e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/zsh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn run_zplug(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {

env::var("ZPLUG_HOME")
.map(PathBuf::from)
.unwrap_or_else(|_| base_dirs.home_dir().join("zplug"))
.unwrap_or_else(|_| base_dirs.home_dir().join(".zplug"))
.require()?;

print_separator("zplug");
Expand Down

0 comments on commit 1bf33e7

Please sign in to comment.