Repositories
Help
tools.aw_id
Commits
Files
Yohn Y.
2023-08-19
Child:
c5a3039be65e
0:1a48eceb43e7
Go to Latest
tools.aw_id/make.sh
..init
Download raw file
View source
Diff to previous
Annotate
History
Loading...
1
#!/bin/sh
2
my_path
=
"
$(
readlink
-f
"
$0
"
)
"
3
app_dir
=
"
$(
dirname
"
$my_path
"
)
"
4
5
src
=
"
$app_dir
/src"
6
res
=
"
$app_dir
/builds"
7
8
mkdir
-p
"
$res
"
9
10
alias
build
=
'go build -v -x'
11
12
cd
"
$src
"
13
go
fmt
14
build
-o
"
$res
/aw_id"
15
GOOS
=
windows
GOARCH
=
amd64
build
-o
"
$res
/aw_id.exe"