mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 07:48:17 +08:00
10 lines
134 B
Bash
Executable File
10 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
python3 -m venv env
|
|
source env/*/activate
|
|
pip3 install ruamel.yaml==0.17.31
|
|
python3 sync.py
|
|
|