-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR will remove the custom CSS changes from this repo. A PR in the Vaultwarden repo will add these in a different way. To make the dynamic CSS work other changes are done to add a custom stylesheet link tag. Also moved some legacy patch files. Signed-off-by: BlackDex <[email protected]>
- Loading branch information
Showing
14 changed files
with
13 additions
and
89 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
|
@@ -23,12 +23,14 @@ fi | |
PATCH_FILENAME="${VAULT_VERSION}.patch" | ||
|
||
if [ "$(git status --porcelain | wc -l)" -ge 1 ]; then | ||
git --no-pager diff --no-color --minimal --abbrev=10 -- . \ | ||
git add -A | ||
git --no-pager diff --cached --no-color --minimal --abbrev=10 -- . \ | ||
':!package-lock.json' \ | ||
':!apps/web/src/favicon.ico' \ | ||
':!apps/web/src/images/[email protected]' \ | ||
':!apps/web/src/images/[email protected]' \ | ||
':!apps/web/src/images/icon-white.png' \ | ||
':!apps/web/src/images/icon-dark.png' \ | ||
':!apps/web/src/images/icons/android-chrome-192x192.png' \ | ||
':!apps/web/src/images/icons/android-chrome-512x512.png' \ | ||
':!apps/web/src/images/icons/apple-touch-icon.png' \ | ||
|
@@ -40,6 +42,7 @@ if [ "$(git status --porcelain | wc -l)" -ge 1 ]; then | |
':!apps/web/src/app/layouts/password-manager-logo.ts' \ | ||
':!bitwarden_license/' \ | ||
> "../patches/${PATCH_FILENAME}" | ||
git reset -q | ||
echo "Patch has been created here: patches/${PATCH_FILENAME}" | ||
else | ||
echo "No changes found, skip generating a patch file." | ||
|