mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-17 21:26:21 +00: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}
|