mirror of
https://github.com/nonoo/kappanhang.git
synced 2025-12-06 08:02:00 +01:00
15 lines
175 B
Bash
Executable file
15 lines
175 B
Bash
Executable file
#!/bin/sh
|
|
self=`readlink "$0"`
|
|
if [ -z "$self" ]; then
|
|
self=$0
|
|
fi
|
|
scriptname=`basename "$self"`
|
|
scriptdir=${self%$scriptname}
|
|
|
|
cd $scriptdir
|
|
scriptdir=`pwd`
|
|
|
|
cd ..
|
|
|
|
go build
|