Skip to content

Commit cda125a

Browse files
committed
Fix upload of Bokeh wheels to CDN (#6098)
1 parent 8d48bd3 commit cda125a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/cdn_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
sp = subprocess.Popen(['aws', 's3', 'sync', 'panel/dist', f's3://cdn.holoviz.org/panel/{js_version}/dist/'])
1111
sp.wait()
12-
sp2 = subprocess.Popen(['aws', 's3', 'sync', 'panel/dist/wheels/bokeh*', 's3://cdn.holoviz.org/panel/wheels/'])
12+
sp2 = subprocess.Popen(['aws', 's3', 'cp', 'panel/dist/wheels/', 's3://cdn.holoviz.org/panel/wheels/', '--recursive', '--exclude', '"*"', '--include', '"bokeh*"'])
1313
sp2.wait()
1414
sp3 = subprocess.Popen(['aws', 's3', 'cp', 'panel/package.json', f's3://cdn.holoviz.org/panel/{js_version}/package.json'])
1515
sp3.wait()

0 commit comments

Comments
 (0)