mirror of
https://github.com/Dasharo/docs.git
synced 2026-03-06 14:46:22 -08:00
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"
|