summaryrefslogtreecommitdiff
path: root/community/liteide/liteide.sh
blob: 3fe9adf82638644fd2dc2b0ee4c04d6bd58b301d (plain)
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