mirror of
https://github.com/namecoin/ncdns-repro
synced 2024-11-13 19:12:01 +00:00
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
shopt -s failglob
|
|
|
|
for PROJECT in ./git_clones/*
|
|
do
|
|
PROJECT_BASE=$(basename $PROJECT)
|
|
mv ${PROJECT}/.git/index ./git_index/${PROJECT_BASE}
|
|
done
|