Skip to content

Commit

Permalink
Merge pull request #135 from owncloud/fix_default_template_name
Browse files Browse the repository at this point in the history
Fix default template file for configuration
  • Loading branch information
nickvergessen committed Nov 10, 2015
2 parents 256f2bb + 2c4ca5e commit ee57a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/config_gen
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exeDir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
pythonDir = os.path.join(os.path.dirname(exeDir), 'python' )
sys.path.insert(0, pythonDir)
etcDir = os.path.join(os.path.dirname(exeDir), 'etc')
defaultTemplateFile = os.path.join(etcDir, 'smashbox.conf.template')
defaultTemplateFile = os.path.join(etcDir, 'smashbox.conf.template-owncloud')
defaultOutputFile = os.path.join(etcDir, 'smashbox.conf')

import smashbox.configgen.generator as generator
Expand Down

0 comments on commit ee57a2b

Please sign in to comment.