We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27bfd2b commit 6ad2fbdCopy full SHA for 6ad2fbd
src/delta/devcontainer-feature.json
@@ -1,7 +1,7 @@
1
{
2
"name": "Delta Pager",
3
"id": "delta",
4
- "version": "1.0.1",
+ "version": "1.0.2",
5
"description": "Installs the delta pager for git",
6
"options": {
7
"version": {
@@ -18,6 +18,6 @@
18
"ghcr.io/devcontainers/features/common-utils"
19
],
20
"containerEnv": {
21
- "GIT_PAGER": "/usr/local/bin/delta"
+ "GIT_PAGER": "/usr/bin/delta"
22
}
23
src/delta/install.sh
@@ -130,7 +130,8 @@ install_delta_for_debian() {
130
# Cleanup
131
run rm -rf "$temp_dir"
132
133
- echo "✅ Delta installed successfully at: $(command -v delta)"
+ export GIT_PAGER=$(command -v delta)
134
+ echo "✅ Delta installed successfully at: ${GIT_PAGER}"
135
delta --version
136
137
0 commit comments