diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-07-14 00:32:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 00:32:59 +0000 |
commit | 2de20378acbb04b2c1408fe715a9642eaa3010ed (patch) | |
tree | 1886a687c3d3260e874c92f11b753fb45ac412e8 | |
parent | 01a7ad946e75ef9ff7847ad73f2fe40e3e5d8a5f (diff) | |
download | alacritty-2de20378acbb04b2c1408fe715a9642eaa3010ed.tar.gz alacritty-2de20378acbb04b2c1408fe715a9642eaa3010ed.zip |
Symlink windows assets for cargo install
Fixes #5114.
-rw-r--r-- | alacritty/build.rs | 2 | ||||
l--------- | alacritty/windows | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/alacritty/build.rs b/alacritty/build.rs index 48841ca8..c093afca 100644 --- a/alacritty/build.rs +++ b/alacritty/build.rs @@ -16,7 +16,7 @@ fn main() { .unwrap(); #[cfg(windows)] - embed_resource::compile("../extra/windows/windows.rc"); + embed_resource::compile("./windows/windows.rc"); } fn commit_hash() -> String { diff --git a/alacritty/windows b/alacritty/windows new file mode 120000 index 00000000..b40a459e --- /dev/null +++ b/alacritty/windows @@ -0,0 +1 @@ +../extra/windows/
\ No newline at end of file |