plugin: preload git plugin by default
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
Łukasz Magiera committed
May 1, 2018 at 13:23 UTC
47bf8836445787edd1138f8acf60f66d47c6904a
2 files changed
+5
-2
plugin/loader/preload.go
+4
-1
@@ -2,10 +2,13 @@ package loader
2
3
import (
4
"github.com/ipfs/go-ipfs/plugin"
5
+ pluginipldgit "github.com/ipfs/go-ipfs/plugin/plugins/git"
6
)
7
8
// DO NOT EDIT THIS FILE
9
// This file is being generated as part of plugin build process
10
// To change it, modify the plugin/loader/preload.sh
11
11
-var preloadPlugins = []plugin.Plugin{}
12
+var preloadPlugins = []plugin.Plugin{
13
+ pluginipldgit.Plugins[0],
14
+}
plugin/loader/preload_list
+1
-1
@@ -3,4 +3,4 @@
3
#
4
# name go-path number of the sub-plugin
5
6
-#ipldgit github.com/ipfs/go-ipfs/plugin/plugins/git 0
6
+ipldgit github.com/ipfs/go-ipfs/plugin/plugins/git 0