commit | 8105ff9d79f6101088e5bc2298202f39ce6f33fb | [log] [tgz] |
---|---|---|
author | Jonatan Antoni <jonatan.antoni@arm.com> | Tue Sep 12 13:54:40 2017 +0200 |
committer | Jonatan Antoni <jonatan.antoni@arm.com> | Tue Sep 12 15:22:11 2017 +0200 |
tree | 03d7d0c082edaad9e9a3fe74d5c83a046c2ac049 | |
parent | 81f6c5cd4a465e329c482db7cbc43daea2bb2e22 [diff] [blame] |
CoreValidation: Moved common parts of command line build script to Utilities.
diff --git a/CMSIS/Utilities/buildutils/dircmd.py b/CMSIS/Utilities/buildutils/dircmd.py new file mode 100644 index 0000000..5a0f211 --- /dev/null +++ b/CMSIS/Utilities/buildutils/dircmd.py
@@ -0,0 +1,13 @@ +#! python + +from buildcmd import BuildCmd + +class DirCmd(BuildCmd): + + def __init__(self): + BuildCmd.__init__(self) + + def getCommand(self): + return "dir" + + \ No newline at end of file