forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
295 B
13 lines
295 B
#!/bin/sh
|
|
|
|
DIR=`dirname "$0"`
|
|
FILE=bundled.go
|
|
BIN=`go env GOPATH`/bin
|
|
|
|
cd $DIR
|
|
rm $FILE
|
|
|
|
$BIN/fyne bundle -package bugs -name codeIcon code.svg > $FILE
|
|
$BIN/fyne bundle -package bugs -name bugIcon -append bug.svg >> $FILE
|
|
$BIN/fyne bundle -package bugs -name flagIcon -append flag.svg >> $FILE
|
|
|
|
|