mbp-manjaro/Scripts/repo-all-editions.sh

14 lines
224 B
Bash
Raw Normal View History

#!/bin/bash
for f in ../manjaro; do
if [ -d "$f" ]; then
cp user-repos.conf ../manjaro/"$f"
fi
done
2020-09-09 19:59:59 -04:00
for f in ../community; do
if [ -d "$f" ]; then
cp user-repos.conf ../manjaro/"$f"
fi
done