Skip to content

Commit

Permalink
Fixing wrong-variable error
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Apr 9, 2014
1 parent 9dadc29 commit 2e093bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ object JavaServerAppPackaging {
(dir, postun, replacements, loader, builder) =>
Some(postun.map(_ + "\n").getOrElse("") + rpmScriptletContent(dir, Postun, loader, replacements, builder))
},
rpmPreun <<= (rpmScriptsDirectory, rpmPostun, linuxScriptReplacements, serverLoading in Rpm, linuxJavaAppStartScriptBuilder in Rpm) apply {
rpmPreun <<= (rpmScriptsDirectory, rpmPreun, linuxScriptReplacements, serverLoading in Rpm, linuxJavaAppStartScriptBuilder in Rpm) apply {
(dir, preun, replacements, loader, builder) =>
Some(preun.map(_ + "\n").getOrElse("") + rpmScriptletContent(dir, Preun, loader, replacements, builder))
}
Expand Down

0 comments on commit 2e093bd

Please sign in to comment.