Skip to content

Commit 33482a1

Browse files
Merge pull request #10 from geico/fix-dashboard-linux-clone
Clone Linux repo to correct dir in dashboard
2 parents dc59713 + 80288c4 commit 33482a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dashboard/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ fn init_linux_repo() -> Result<()> {
234234
if !Path::new(format!("{}/.git", LINUX_REPO_PATH).as_str()).exists() {
235235
Command::new("git")
236236
.current_dir(LINUX_REPO_PATH)
237-
.args(["clone", LINUX_REPO_URL])
237+
.args(["clone", LINUX_REPO_URL, LINUX_REPO_PATH])
238238
.spawn()?
239239
.wait()?;
240240
}

0 commit comments

Comments
 (0)