Skip to content

Commit

Permalink
Merge pull request #338 from mmorearty/typos
Browse files Browse the repository at this point in the history
fix minor spelling mistakes
  • Loading branch information
kardapoltsev committed Aug 29, 2014
2 parents d334c80 + 8ac8257 commit 03a2e0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ run() {
mainclass="$app_mainclass"
fi

# Now we check to see if there are any java opts on the environemnt. These get listed first, with the script able to override them.
# Now we check to see if there are any java opts on the environment. These get listed first, with the script able to override them.
if [[ "$JAVA_OPTS" != "" ]]; then
java_opts="${JAVA_OPTS}"
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ trait WindowsPlugin extends Plugin {
if (f.getAbsolutePath != wix.getAbsolutePath) IO.copyFile(f, wix)
IO.copy(for ((f, to) <- m) yield (f, t / to))
// Now compile WIX
val wixdir = Option(System.getenv("WIX")) getOrElse sys.error("WIX environemnt not found. Please ensure WIX is installed on this computer.")
val wixdir = Option(System.getenv("WIX")) getOrElse sys.error("WIX environment not found. Please ensure WIX is installed on this computer.")
val candleCmd = Seq(wixdir + "\\bin\\candle.exe", wix.getAbsolutePath) ++ co
s.log.debug(candleCmd mkString " ")
Process(candleCmd, Some(t)) ! s.log match {
Expand Down

0 comments on commit 03a2e0f

Please sign in to comment.