summaryrefslogtreecommitdiff
path: root/community/golangide/golangide.sh
blob: 70705e5f303da3f2e5bac504512f649682aafd40 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# The libqjson issue has been reported upstream
if [ ! -z $GOROOT -a -e $GOROOT ]; then
  LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
else
  GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
fi