You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
337 B
10 lines
337 B
1 year ago
|
#!/bin/bash
|
||
|
|
||
|
CASYNC_DIR="${CASYNC_DIR:=/tmp/casync}"
|
||
|
|
||
|
OPENPILOT_RELEASES="https://commadist.blob.core.windows.net/openpilot-releases/"
|
||
|
|
||
|
SAS="$(python -c 'from tools.lib.azure_container import get_container_sas;print(get_container_sas("commadist","openpilot-releases"))')"
|
||
|
|
||
|
azcopy cp "$CASYNC_DIR*" "$OPENPILOT_RELEASES?$SAS" --recursive
|