Skip to content

Commit

Permalink
adding logs to create_selenium_data_folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tkalir committed Dec 9, 2024
1 parent f990e5f commit 8c7d163
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bin/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,13 @@ def compose(app_name, *args):


def create_selenium_data_folder():
ssh('mkdir -p /tmp/selenium-tempdata && sudo chown 1200:1201 /tmp/selenium-tempdata')
ssh(
'echo "Creating Selenium data folder..." && '
'mkdir -p /tmp/selenium-tempdata && '
'echo "Changing ownership of the Selenium data folder..." && '
'sudo chown 1200:1201 /tmp/selenium-tempdata && '
'echo "Selenium data folder setup completed."'
)


def main(cmd, *args):
Expand Down

0 comments on commit 8c7d163

Please sign in to comment.