diff options
author | Paul Alvarez <palvarez@greenhouse.io> | 2018-01-10 11:54:34 -0500 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-01-10 08:54:34 -0800 |
commit | 632ef0df7f55cad7c7694acfff69a8ba76fac4a0 (patch) | |
tree | 928729c4c1965126ba5705a7fb082108bdde9abe | |
parent | 02953c28127ece6a919e43f607ff5dbd442c6de0 (diff) | |
download | alacritty-632ef0df7f55cad7c7694acfff69a8ba76fac4a0.tar.gz alacritty-632ef0df7f55cad7c7694acfff69a8ba76fac4a0.zip |
Make Mac app installation steps idempotent (#1015)
Repeated uses of `cp -r target/release/osx/Alacritty.app
/Applications/Alacritty.app` will result in copying Alacritty.app to
`/Applications/Alacritty.app/Alacritty.app`.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ To build an application for macOS, run ```sh make app -cp -r target/release/osx/Alacritty.app /Applications/Alacritty.app +cp -r target/release/osx/Alacritty.app /Applications/ ``` ## Configuration |