mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2026-01-11 10:09:22 -06:00
10 lines
123 B
Bash
Executable file
10 lines
123 B
Bash
Executable file
#!/usr/bin/env bash
|
|
workdir=$(pwd)
|
|
|
|
for dir in base openbox i3
|
|
do
|
|
cd ${workdir}/${dir}
|
|
./build
|
|
done
|
|
|
|
cd ${workdir}
|