Unify repo/commit/rev variable names

This commit is contained in:
BtbN 2022-07-12 17:54:12 +02:00
parent b9a3f7ffce
commit 38fccdcd44
81 changed files with 254 additions and 254 deletions

View file

@ -1,16 +1,16 @@
#!/bin/bash
GME_REPO="https://bitbucket.org/mpyne/game-music-emu.git"
GME_COMMIT="d39b0bce47f66074c6aa85202b8cb4642fa77b78"
SCRIPT_REPO="https://bitbucket.org/mpyne/game-music-emu.git"
SCRIPT_COMMIT="d39b0bce47f66074c6aa85202b8cb4642fa77b78"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git clone "$GME_REPO" gme
git clone "$SCRIPT_REPO" gme
cd gme
git checkout "$GME_COMMIT"
git checkout "$SCRIPT_COMMIT"
mkdir build && cd build