Skip to content

Commit

Permalink
fix: Update update subcommand target mount path(#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
naj1n authored Jun 12, 2023
2 parents bc08152 + 97fa7d0 commit e8f0da2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "illa"
version = "1.2.12"
version = "1.2.13"
authors = ["ILLA <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/command/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async fn update_local(progress_style: ProgressStyle) -> Result {
.clone()
.unwrap();
let mounts = vec![Mount {
target: Some("/var/lib/postgresql/data".to_string()),
target: Some("/opt/illa/database".to_string()),
source: Some(builder_mount_cp[0].source.clone().unwrap()),
typ: Some(MountTypeEnum::BIND),
read_only: Some(false),
Expand Down

0 comments on commit e8f0da2

Please sign in to comment.