mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-06 21:40:57 +00:00
17 lines
297 B
Bash
Executable File
17 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
check_location ()
|
|
{
|
|
if [[ ! -d $(pwd)/AROS/scripts ]]; then
|
|
printf "This script must be placed next to AROS source repository (same top level directory)\n"
|
|
printf "Exiting...\n"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
source $(pwd)/AROS/scripts/rebuild-inc
|
|
|
|
check_location
|
|
|
|
main
|