blob: 5a0f21181e757ffc31b0c41d17b2cdbd8cd63a20 [file] [log] [blame]
Jonatan Antoni8105ff92017-09-12 13:54:40 +02001#! python
2
3from buildcmd import BuildCmd
4
5class DirCmd(BuildCmd):
6
7 def __init__(self):
8 BuildCmd.__init__(self)
9
10 def getCommand(self):
11 return "dir"
12
13