mirror of
https://github.com/Dasharo/docs.git
synced 2026-06-13 10:16:57 -07:00
f8380f5175
Signed-off-by: Filip Gołaś <filip.golas@3mdeb.com>
7 lines
191 B
Bash
7 lines
191 B
Bash
#!/bin/bash
|
|
|
|
repo=$(mktemp -d)
|
|
git clone https://github.com/Dasharo/dts-configs $repo &> /dev/null
|
|
python "$(dirname "$(realpath "$0")")"/trustroot-support.py "$repo" --pretty
|
|
rm -rf "$repo"
|