Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 8e386a5

Browse files
committed
Add output to manager.py script
1 parent 70c2f47 commit 8e386a5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/manage.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ def create_manifest_file(target):
2020

2121

2222
def switch(target):
23+
print('Switching to ' + target)
24+
2325
create_manifest_file(target)
2426

27+
print('Done')
28+
2529

2630
def build(target):
31+
print('Building for ' + target)
32+
2733
switch(target)
2834

2935
arguments = [
@@ -37,6 +43,8 @@ def build(target):
3743

3844
subprocess.run(arguments, shell=True)
3945

46+
print('Done')
47+
4048

4149
def run():
4250
arg_parser = argparse.ArgumentParser()

0 commit comments

Comments
 (0)