aboutsummaryrefslogtreecommitdiff
path: root/mrconfig-updater
blob: f860a5cf36e579ca3577d12d1e143121dea7d828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
#
# Generates a `~/.custom/mrconfig-automatic` file with
# autodetected repositories from some folders.
#
# To use this file, just add the following on your ~/.mrtrust:
#
#   custom/mrconfig-automatic
#
# and the following on your ~/.mrconfig:
#
#   include = cat ~/.custom/mrconfig-automatic
#

# Configuration
MRCONFIG="$HOME/.custom/mrconfig-automatic"
FOLDERS="apps file code"
DEPTH="2"
CWD="`pwd`"

# Setup
cd $HOME
rm -f $MRCONFIG

# Iterate
for folder in $FOLDERS; do
  find $folder -maxdepth $DEPTH -name '.git' | while read repo; do
    echo "[`dirname $repo`]" >> $MRCONFIG
  done
done

# Teardown
cd $CWD