Continue OS X installer work.

This commit is contained in:
Steve Checkoway
2003-09-09 01:00:48 +00:00
parent 95f387ce5c
commit 3226a2fa6d
4 changed files with 25 additions and 11 deletions
@@ -209,6 +209,13 @@ void Processor::ProcessLine(const CString& line, unsigned& nextLine)
return;
}
if (parts[0] == "ASK")
{
if (parts.size() != 3)
goto error;
mVars[parts[1]] = (*mAsk)(parts[2]);
}
error:
(*mError)("%s is an invalid command", line.c_str());
++nextLine;