Skip to content

Commit

Permalink
remove mobile files
Browse files Browse the repository at this point in the history
  • Loading branch information
Pari Work Temp committed Aug 26, 2024
1 parent 96b4115 commit 63365dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ def remove_mobile_client_files(client):
rmtree(join(mobile_clients_path, client))


def remove_special_mobile_files():
file_names = [
join("scripts/setup_mobile_config.sh"),
]
directories = [
join("resources")

]
for file in file_names:
if exists(file):
remove(file)
for directory in directories:
rmtree(directory)

def move_mobile_client_to_root(client):
if exists("mobile"):
rmtree("mobile")
Expand Down

0 comments on commit 63365dd

Please sign in to comment.