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.
14 lines
383 B
14 lines
383 B
#!/bin/sh
|
|
|
|
DIR=`dirname "$0"`
|
|
FILE=bundled.go
|
|
BIN=`go env GOPATH`/bin
|
|
|
|
cd $DIR
|
|
rm $FILE
|
|
|
|
$BIN/fyne bundle -package icon -name bugBitmap bug.png > $FILE
|
|
$BIN/fyne bundle -package icon -append -name clockBitmap clock.png >> $FILE
|
|
$BIN/fyne bundle -package icon -append -name fractalBitmap fractal.png >> $FILE
|
|
$BIN/fyne bundle -package icon -append -name xkcdBitmap xkcd.png >> $FILE
|
|
|
|
|