diff options
| author | emmett1 <me@emmett1.my> | 2026-06-23 16:57:23 +0800 |
|---|---|---|
| committer | emmett1 <me@emmett1.my> | 2026-06-23 16:57:23 +0800 |
| commit | 4ea9d5b34a37c426d07d691113e998246d607c9c (patch) | |
| tree | e978e4892d44c11b736045b720b0c104c7be7ffb | |
| parent | 6d30d73785f42648c2ab30040f0763365e80b32e (diff) | |
| download | alicelinux-4ea9d5b34a37c426d07d691113e998246d607c9c.tar.gz alicelinux-4ea9d5b34a37c426d07d691113e998246d607c9c.zip | |
git: removed bash-completion
| -rw-r--r-- | repos/core/git/.files | 3 | ||||
| -rw-r--r-- | repos/core/git/abuild | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/repos/core/git/.files b/repos/core/git/.files index 32d897d4..37622542 100644 --- a/repos/core/git/.files +++ b/repos/core/git/.files @@ -217,9 +217,6 @@ drwxr-xr-x root/root usr/libexec/git-core/mergetools/ -rw-r--r-- root/root usr/libexec/git-core/mergetools/xxdiff -rwxr-xr-x root/root usr/libexec/git-core/scalar drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/bash-completion/ -drwxr-xr-x root/root usr/share/bash-completion/completions/ --rw-r--r-- root/root usr/share/bash-completion/completions/git drwxr-xr-x root/root usr/share/git-core/ drwxr-xr-x root/root usr/share/git-core/templates/ -rw-r--r-- root/root usr/share/git-core/templates/description diff --git a/repos/core/git/abuild b/repos/core/git/abuild index 33163907..305842da 100644 --- a/repos/core/git/abuild +++ b/repos/core/git/abuild @@ -1,6 +1,6 @@ name=git version=2.54.0 -release=1 +release=2 source="https://www.kernel.org/pub/software/scm/$name/$name-$version.tar.xz run conf" sv="run conf" @@ -20,3 +20,7 @@ NO_CROSS_DIRECTORY_HARDLINKS=1 NO_INSTALL_HARDLINKS=1 EOF } + +postbuild() { + rm -r $PKG/usr/share/bash-completion/ +} |