]> Raphaƫl G. Git Repositories - distcook/blobdiff - lib/export.sh
Fix config name
[distcook] / lib / export.sh
index b3d6716be7e283b73c1b01fb2920c4730409a724..e8c65fcb5a18f76a6a57d0149387545a66ce6c6a 100644 (file)
@@ -1,9 +1,9 @@
 #! /bin/sh -e
 
 # Clear config
-cat /dev/null > root.config
+cat /dev/null > root.conf
 
 # Append every config parameters
 for i in `cat config/*.conf | perl -pne 'undef $_ if /^#/; s/=.*$//'`; do
-       eval echo ${i}=\$$i | tee -a root.config
+       eval echo ${i}=\$$i | tee -a root.conf
 done