From 97abec708cbc011a30e4f822baa217c14dcfbaa8 Mon Sep 17 00:00:00 2001 From: Brian Begy Date: Tue, 4 May 2021 08:43:39 -0500 Subject: [PATCH 1/3] Explain install.sh must be executable Add a sentence explaining that the install.sh must be marked executable and that coder won't do it for you. --- workspaces/personalization.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/workspaces/personalization.md b/workspaces/personalization.md index 4132280a1..014cf0595 100644 --- a/workspaces/personalization.md +++ b/workspaces/personalization.md @@ -98,7 +98,9 @@ workspace or turn it on. At startup, Coder clones your dotfiles repository into `~/dotfiles`. If there's an executable `~/dotfiles/install.sh` present, Coder executes it. If not, all -dot-prefixed files are symlinked to your home directory. +dot-prefixed files are symlinked to your home directory. + +You must mark the install.sh file as executable before committing it to your dotfiles repo. Read more about dotfiles repos [here](http://dotfiles.github.io/). From 0d8eae9e7d6214dacb9285c7d44ee97eef0a2a49 Mon Sep 17 00:00:00 2001 From: Brian Begy Date: Tue, 4 May 2021 09:31:17 -0500 Subject: [PATCH 2/3] Update workspaces/personalization.md Accept suggestion from review. Co-authored-by: Thomas Hughes <2894107+IAmHughes@users.noreply.github.com> --- workspaces/personalization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspaces/personalization.md b/workspaces/personalization.md index 014cf0595..78466a983 100644 --- a/workspaces/personalization.md +++ b/workspaces/personalization.md @@ -100,7 +100,7 @@ At startup, Coder clones your dotfiles repository into `~/dotfiles`. If there's an executable `~/dotfiles/install.sh` present, Coder executes it. If not, all dot-prefixed files are symlinked to your home directory. -You must mark the install.sh file as executable before committing it to your dotfiles repo. +- _Note: You must mark the `install.sh` file as executable before committing it to your dotfiles repo._ Read more about dotfiles repos [here](http://dotfiles.github.io/). From fd86832197dcfd741e8790ae309553db90eb43e8 Mon Sep 17 00:00:00 2001 From: Katie Horne Date: Tue, 4 May 2021 09:32:54 -0500 Subject: [PATCH 3/3] Edit, format text --- workspaces/personalization.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspaces/personalization.md b/workspaces/personalization.md index 78466a983..8975eb538 100644 --- a/workspaces/personalization.md +++ b/workspaces/personalization.md @@ -100,7 +100,8 @@ At startup, Coder clones your dotfiles repository into `~/dotfiles`. If there's an executable `~/dotfiles/install.sh` present, Coder executes it. If not, all dot-prefixed files are symlinked to your home directory. -- _Note: You must mark the `install.sh` file as executable before committing it to your dotfiles repo._ +> You **must** mark `install.sh` as executable before committing it to your +> dotfiles repo. Read more about dotfiles repos [here](http://dotfiles.github.io/).