corrections pour git

On doit copier les différentes scripts bash de git-core et spécifier GIT_EXEC_PATH
This commit is contained in:
Thomas Briffard 2021-07-21 10:22:16 +02:00
parent 402d8946f6
commit 819cb04fb7
3 changed files with 15 additions and 1 deletions

View File

@ -50,6 +50,7 @@ services:
- ./.env
environment:
- CUSTOM_STEP_PRE_DEPLOY=/build/git_pre_step.sh
- CUSTOM_STEP_POST_DEPLOY=/build/git_post_step.sh
- NOM_APPIMAGE=git_2.32.0
command : ["bash", "-c","/template.sh /usr/local/bin/git /build"]

4
git/git_post_step.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
cp -r --preserve=links /usr/local/libexec/git-core $WORK_DIR/AppDir/usr/bin/

View File

@ -2,6 +2,15 @@
fichierIcon=/build/git.png
fichierDesktop=/build/git.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop"
cat << EOF > $WORK_DIR/AppRun
#!/bin/bash
APPDIR=\$(dirname -- "\$0")
export GIT_EXEC_PATH=\$APPDIR/usr/bin/git-core
exec \$APPDIR/usr/bin/$APP_NOM "\$@"
EOF
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop --custom-apprun $WORK_DIR/AppRun"