-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8eb3ec
commit 630f4f7
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
patches/matrix-react-sdk/0022-Don-t-symlink-css-to-fix-Windows-native-build.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From 16fe0fe8d0068e4c5da3fa5516c5578d2ffaabc7 Mon Sep 17 00:00:00 2001 | ||
From: SpiritCroc <[email protected]> | ||
Date: Sun, 20 Oct 2024 17:00:19 +0200 | ||
Subject: Don't symlink css to fix Windows-native build | ||
|
||
--- | ||
.gitignore | 2 ++ | ||
res/css/sc-cpd-overrides.css | 1 - | ||
2 files changed, 2 insertions(+), 1 deletion(-) | ||
delete mode 120000 res/css/sc-cpd-overrides.css | ||
|
||
diff --git a/.gitignore b/.gitignore | ||
index 3137cd555b..5345301b97 100644 | ||
--- a/.gitignore | ||
+++ b/.gitignore | ||
@@ -1,3 +1,5 @@ | ||
+res/css/sc-*.css | ||
+ | ||
/.npmrc | ||
/*.log | ||
package-lock.json | ||
diff --git a/res/css/sc-cpd-overrides.css b/res/css/sc-cpd-overrides.css | ||
deleted file mode 120000 | ||
index 532e96fddc..0000000000 | ||
--- a/res/css/sc-cpd-overrides.css | ||
+++ /dev/null | ||
@@ -1 +0,0 @@ | ||
-../../../res/css/sc-cpd-overrides.css | ||
\ No newline at end of file | ||
-- | ||
2.47.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,6 @@ popd | |
pushd i18n-helper | ||
$yarn install | ||
popd | ||
|
||
# CSS overrides | ||
cp res/css/* matrix-react-sdk/res/css/ |