From 5da3b126f7d7e9eef05d99e78b2bb89da248b7f2 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Sun, 15 Jul 2018 23:40:29 -0700 Subject: [PATCH] Do I want to support expend environment? --- config/config.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index ca7297d..96c8f5b 100644 --- a/config/config.go +++ b/config/config.go @@ -65,9 +65,13 @@ type SourceConfig struct { // ExpandEnvironment specifies a list of install file paths that when // installed should have bash style parameter expansion done for - // environment parables. These generally look like: ${HOME}. This + // environment variables. These generally look like: ${HOME}. This // configuration is useful for config files that do not support environment // variable expansion. + // + // TODO: Decide if this is actually something we want to implement. It + // makes diffing a bit harder since we can't straight compare the + // file size for single files anymore. ExpandEnvironment []string `yaml:"expand_environment"` }