summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLi Yi <liyi.novo@gmail.com>2011-03-26 22:08:19 +0800
committerLi Yi <liyi.novo@gmail.com>2011-03-26 22:08:19 +0800
commit5ddc7da14175c4a7fa03e360fb28d620eb37e96b (patch)
tree2469a1fc8c807344889b10ba6de63899b59bdbf7 /tools
parentff611b578e4df33259d8013e37dd2f70c4b93d53 (diff)
downloadkickstarter-5ddc7da14175c4a7fa03e360fb28d620eb37e96b.tar.gz
kickstarter-5ddc7da14175c4a7fa03e360fb28d620eb37e96b.tar.bz2
kickstarter-5ddc7da14175c4a7fa03e360fb28d620eb37e96b.zip
add a new keyword 'FileSystem', based on the updated static '.ks' file
furthormore, just one '\n' there enough
Diffstat (limited to 'tools')
-rwxr-xr-xtools/kickstarter4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/kickstarter b/tools/kickstarter
index 9b3cdbe..2d511f2 100755
--- a/tools/kickstarter
+++ b/tools/kickstarter
@@ -62,14 +62,14 @@ class KSWriter():
for scr in conf['PostScripts']:
f = open('./custom/scripts/%s.post' %scr, 'r')
postscript += f.read()
- postscript += "\n\n"
+ postscript += "\n"
f.close()
nochrootscript = ""
for scr in conf['NoChrootScripts']:
f = open('./custom/scripts/%s.nochroot' %scr, 'r')
nochrootscript += f.read()
- nochrootscript += "\n\n"
+ nochrootscript += "\n"
f.close()
ptab = ""