Skip to content

Commit

Permalink
Fix quoting excluded file list
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterDA committed Jul 24, 2019
1 parent 77e43b1 commit 677e50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/project.lua
Expand Up @@ -194,7 +194,7 @@ function Project:__tostring()
' description = '..escape(self.description)..',\n'..
' homepage = '..escape(self.homepage)..',\n'..
' identifier = '..escape(self.identifier)..',\n'..
' excludeFileList = { '..escape(table.concat(self.excludeFileList, ', '))..'} ,\n'..
' excludeFileList = { '..escape(table.concat(self.excludeFileList, "', '"))..'} ,\n'..
' compile = '..escape(self.compile)..',\n'..
' projectDirectory = '..escape(self.projectDirectory)..',\n'..
' releaseDirectory = '..escape(self.releaseDirectory)..',\n'..
Expand Down

0 comments on commit 677e50f

Please sign in to comment.