mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-25 10:30:50 +00:00
19 lines
288 B
Bash
Executable File
19 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run this from the top level directory
|
|
|
|
set -e
|
|
source "res/util.sh"
|
|
|
|
for i in desktop desk.acc desktop.system ram.system; do
|
|
cecho yellow Building: $i
|
|
cd $i
|
|
res/go.sh
|
|
cd ..
|
|
done
|
|
|
|
# Mountable directory for Virtual ][
|
|
if [ -d mount ]; then
|
|
res/mount.sh
|
|
fi
|