12 lines
241 B
Bash
Executable File
12 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
S3_BUCKET=anyscale-example-video-analysis-test-bucket
|
|
|
|
export S3_BUCKET
|
|
|
|
python ci/nb2py.py README.ipynb README.py # convert notebook to py script
|
|
python README.py
|
|
rm README.py # remove the generated script
|