12 lines
346 B
Bash
Executable File
12 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
clear
|
|
|
|
for folder in */ ; do
|
|
if [[ -f "${folder}/meta.json" ]]; then
|
|
sed -i 's/github.com\/vmario89/github.com\/eridur-de/g' ${folder}/meta.json
|
|
sed -i 's/mightyscape-1.X/mightyscape-1.2/g' ${folder}/meta.json
|
|
#add dependent_extensions to meta.json
|
|
#sed -i '6i "dependent_extensions": null,' ${folder}/meta.json
|
|
fi
|
|
done
|