mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-27 00:00:32 +00:00
091219d742
* Small env fixes: for git submodules & python3 Using `/usr/bin/env python3` is preferred over `/usr/bin/python3` because it is compatible with virtualenvs, etc. It picks the version of `python3` currently on the `PATH`, rather than the system-wide default. For the git submodules, I had two issues: The ZAPD repo is currently pointing at a commit not on the master branch, which has to be specifically fetched. Adding `--remote` to the update command fixes this. The decomp-permuter has primary branch `main` not `master` like this repo, so this has to be specified in `.gitmodules` when using `--remote`. * Rework `git submodule update...` part of Makefile
14 lines
450 B
Plaintext
14 lines
450 B
Plaintext
[submodule "tools/asm-processor"]
|
|
path = tools/asm-processor
|
|
url = https://github.com/simonlindholm/asm-processor.git
|
|
[submodule "tools/asm-differ"]
|
|
path = tools/asm-differ
|
|
url = https://github.com/simonlindholm/asm-differ.git
|
|
[submodule "tools/decomp-permuter"]
|
|
path = tools/decomp-permuter
|
|
url = https://github.com/simonlindholm/decomp-permuter
|
|
branch = main
|
|
[submodule "ZAPD"]
|
|
path = tools/ZAPD
|
|
url = https://github.com/zeldaret/ZAPD.git
|