Merge branch 'git4' of https://github.com/ethereum/remix-project into git4
commit
7da0d585f3
@ -0,0 +1,14 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
# Find all project.json files in subdirectories |
||||||
|
find . -type d -name 'node_modules' -prune -o -name '.eslintrc' -print | while read -r file; do |
||||||
|
# Extract the directory path of the file |
||||||
|
dir=$(dirname "$file") |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
echo $file |
||||||
|
|
||||||
|
git checkout master -- $file |
||||||
|
|
||||||
|
done |
Loading…
Reference in new issue