Skip to content
Snippets Groups Projects
Commit 044529cd8edf authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

setup: automatic support for a `./local.repos` file

If the `local.repos` file is present, it will be read instead of the
`default.repos` file. The file itself is not tracked by version control, it
is... local
parent 3bd277f0a829
No related branches found
No related tags found
No related merge requests found
......@@ -13,4 +13,5 @@
Pipfile
Pipfile.lock
.python-version
.idea/
\ No newline at end of file
.idea/
local.repos
......@@ -36,7 +36,11 @@
fi
fi
./script/setup-repos ./default.repos ./repos
repofiles="./default.repos"
if [ -e "./local.repos" ]; then
repofiles="./local.repos"
fi
./script/setup-repos $repofiles ./repos
python ./create_skip_file.py
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment