Skip to content

Commit

Permalink
Merge pull request #10 from tkalir/adding-logs-to-create-selenium-folder
Browse files Browse the repository at this point in the history
adding logs to create_selenium_data_folder
  • Loading branch information
tkalir authored Dec 9, 2024
2 parents f990e5f + 8c7d163 commit bbd463c
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 bbd463c

Please sign in to comment.