Skip to content

Commit

Permalink
Fix generated chown command (#1151)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcenkar committed Aug 26, 2018
1 parent d0d7660 commit dad0044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ trait DebianPluginLike {
streams: TaskStreams): (String, String) = {
// how to create the chownCmd. TODO maybe configurable?
def chownCmd(user: String, group: String)(path: String): String =
s"chown $user:$group $path"
s"chown $user:$group '$path'"

val header = "# Chown definitions created by SBT Native Packager\n"
// Check for non root user/group and create chown commands
Expand Down

0 comments on commit dad0044

Please sign in to comment.