mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
9 lines
168 B
Bash
Executable file
9 lines
168 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
echo --- Installing bun
|
|
npm install -g bun@1.0.4
|
|
|
|
echo --- Generating pipeline
|
|
bun .buildkite/scripts/pull-request/pipeline.generate.ts
|