1 2 3 4 5 6 7
#!/bin/sh ELF=/usr/bin/liteide.elf if [ ! -z $GOROOT -a -e $GOROOT ]; then $ELF $@ else GOROOT=/usr/lib/go $ELF $@ fi