mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
d994dabace
We do not use a "plugin system" for Git addons anymore, and therefore this directory is no longer useful. Indeed that directory is way more confusing, given that it includes more than mere Git addons, going from Bitbucket server command-line tools to complete rewrites of Git in exotic programming languages. Also, without this directory, the mental load of decision-making reduces a lot. When anyone is interested in including a new git-related tool, just put it into pkgs/applications/version-management, without apologies.
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
diff --git a/transcrypt b/transcrypt
|
|
index a0b562d..7888f5d 100755
|
|
--- a/transcrypt
|
|
+++ b/transcrypt
|
|
@@ -278,6 +278,7 @@ save_helper_scripts() {
|
|
|
|
cat <<-'EOF' > "${GIT_DIR}/crypt/clean"
|
|
#!/usr/bin/env bash
|
|
+ PATH="$(transcrypt-depspathprefix 2>/dev/null)$PATH"
|
|
filename=$1
|
|
# ignore empty files
|
|
if [[ -s $filename ]]; then
|
|
@@ -300,6 +301,7 @@ save_helper_scripts() {
|
|
|
|
cat <<-'EOF' > "${GIT_DIR}/crypt/smudge"
|
|
#!/usr/bin/env bash
|
|
+ PATH="$(transcrypt-depspathprefix 2>/dev/null)$PATH"
|
|
tempfile=$(mktemp 2> /dev/null || mktemp -t tmp)
|
|
trap 'rm -f "$tempfile"' EXIT
|
|
cipher=$(git config --get --local transcrypt.cipher)
|
|
@@ -309,6 +311,7 @@ save_helper_scripts() {
|
|
|
|
cat <<-'EOF' > "${GIT_DIR}/crypt/textconv"
|
|
#!/usr/bin/env bash
|
|
+ PATH="$(transcrypt-depspathprefix 2>/dev/null)$PATH"
|
|
filename=$1
|
|
# ignore empty files
|
|
if [[ -s $filename ]]; then
|
|
@@ -351,7 +354,7 @@ save_configuration() {
|
|
git config merge.renormalize 'true'
|
|
|
|
# add a git alias for listing encrypted files
|
|
- git config alias.ls-crypt "!git ls-files | git check-attr --stdin filter | awk 'BEGIN { FS = \":\" }; /crypt$/{ print \$1 }'"
|
|
+ git config alias.ls-crypt "!PATH=\"\$(transcrypt-depspathprefix 2>/dev/null)\$PATH\"; git ls-files | git check-attr --stdin filter | awk 'BEGIN { FS = \":\" }; /crypt$/{ print \$1 }'"
|
|
}
|
|
|
|
# display the current configuration settings
|