mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2026-08-16 13:44:23 +00:00
10 lines
130 B
Shell
Executable file
10 lines
130 B
Shell
Executable file
#!/usr/bin/env bash
|
|
workdir=$(pwd)
|
|
|
|
for dir in base i3 # openbox
|
|
do
|
|
cd ${workdir}/${dir}
|
|
./build ${@}
|
|
done
|
|
|
|
cd ${workdir}
|