When running integration test in CI, make the /tmp directory before writing temp session file

This commit is contained in:
Alessio 2024-08-19 14:52:41 -07:00
parent dda57b8117
commit e699301e82

View File

@ -29,7 +29,8 @@ pipeline:
# - branch: v*.*.* # - branch: v*.*.*
commands: commands:
- cd cmd - cd cmd
- echo "$OFFLINE_TWATTER_SESSION_FILE" > $SESSION_FILE_PATH # Write the session file to temp location - mkdir -p $(dirname $SESSION_FILE_PATH) # Make the temp directory...
- echo "$OFFLINE_TWATTER_SESSION_FILE" > $SESSION_FILE_PATH # ...and write the session file to temp location
- ./tests.sh - ./tests.sh
webserver_test: webserver_test: