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