Snap: Add {system,user}-gitconfig plugs to read gitconfig (#9619)
authorFurther <55025025+ifurther@users.noreply.github.com>
Fri, 1 Apr 2022 08:52:39 +0000 (16:52 +0800)
committerGitHub <noreply@github.com>
Fri, 1 Apr 2022 08:52:39 +0000 (02:52 -0600)
* Add system-gitconfig plug to read /etc/gitconfig
* Add user-gitconfig plug to read user-specific gitconfig file(s)
* Add app environment setting to set $HOME as $SNAP_REAL_HOME

snap/snapcraft.yaml

index 9953190f635101586644145c1593ea3e216626b0..32ce2553caf8dd1a0c425ccffbb67d8adf61195d 100644 (file)
@@ -17,14 +17,29 @@ package-repositories:
     key-id: 9FD3B784BC1C6FC31A8A0A1C1655A0AB68576280
     url: https://deb.nodesource.com/node_16.x
 
+plugs:
+  system-gitconfig:
+    interface: system-files
+    read:
+    - /etc/gitconfig
+  user-gitconfig:
+    interface: personal-files
+    read:
+    - $HOME/.gitconfig
+    - $HOME/.config/git/config
+    
 apps:
   hugo:
+    environment:
+      HOME: $SNAP_REAL_HOME
     command: bin/hugo
     completer: hugo-completion
     plugs:
       - home
       - network-bind
       - removable-media
+      - system-gitconfig
+      - user-gitconfig
 
 parts:
   git: