change architecture
This commit is contained in:
parent
cf8c7d280e
commit
0669ada3cc
26 changed files with 163 additions and 282 deletions
16
build.sh
Executable file
16
build.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
cd "$(dirname "$(realpath "$0")")"
|
||||
|
||||
|
||||
programs="gen_module install"
|
||||
|
||||
|
||||
rm -fr bin
|
||||
mkdir -p bin
|
||||
|
||||
|
||||
for program in $programs
|
||||
do
|
||||
deno compile --output="bin/mbztr_$program" --allow-all "src/$program.ts"
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue