mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
Updated README.md and make extract.sh remove asset folder if it exists.
This commit is contained in:
@@ -46,7 +46,7 @@ There are some useful scripts that should be kept in mind when working on this r
|
||||
|
||||
#### `./generate_ld.sh`
|
||||
|
||||
This script will generate the linker file `dkr.ld`, which is used for building. You will need to call this when you add or remove files from the `/asm/` directory.
|
||||
This script will generate the linker file `dkr.ld`, which is used for building. You will need to call this when you add or remove files from the `/asm/` or `/src/` directories.
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
echo 'Extracting Assets...'
|
||||
|
||||
# Remove assets directory if it exists.
|
||||
ASSETS_DIR="./assets/"
|
||||
if [ -d "$ASSETS_DIR" ]; then
|
||||
rm -r $ASSETS_DIR
|
||||
fi
|
||||
|
||||
if ! ./tools/dkr_extractor ./extract-ver ./baseroms .; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user