home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1999 - Modelworks Software
-
- /**
- @Tool: dumpEnvironmentPath~lists the environment path
- that will be used with running tools.
- @EndTool:
- @Summary: dumpEnvironmentPath~lists the environment path
- */
-
- function DoCommand()
- {
- var tool = newTool();
- var pathEnvironment = tool.getEnvironmentVariable("Path");
- getOutput().writeLine("Path: " + pathEnvironment);
- }
-
- !!/Script
-
-