Skip to content

Commit a9e4180

Browse files
theotherjimmyadbridge
authored andcommitted
Move codered to its own directory
1 parent 772fc66 commit a9e4180

33 files changed

+3
-3
lines changed

tools/export/codered.py renamed to tools/export/codered/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
from exporters import Exporter
1817
from os.path import splitext, basename
1918

19+
from tools.export.exporters import Exporter
2020

2121
class CodeRed(Exporter):
2222
NAME = 'CodeRed'
@@ -56,5 +56,5 @@ def generate(self):
5656
'symbols': self.toolchain.get_symbols()
5757
}
5858
ctx.update(self.flags)
59-
self.gen_file('codered_%s_project.tmpl' % self.target.lower(), ctx, '.project')
60-
self.gen_file('codered_%s_cproject.tmpl' % self.target.lower(), ctx, '.cproject')
59+
self.gen_file('codered/%s_project.tmpl' % self.target.lower(), ctx, '.project')
60+
self.gen_file('codered/%s_cproject.tmpl' % self.target.lower(), ctx, '.cproject')
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)