mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
7 lines
215 B
Bash
Executable File
7 lines
215 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
sudo zypper --non-interactive search --installed-only 'python??' \
|
|
| sed -e '1,/---/ d' -e 's/ | /,/g' \
|
|
| awk -F ',' '{print $2 "-pre-commit"}' \
|
|
| xargs sudo zypper install --no-confirm git-lfs
|