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