blob: 736727ed7df385911ec2fd571d00ae8cf6b05e99 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
ELF=/usr/bin/liteide
# The libqjson issue has been reported upstream
if [ ! -z $GOROOT -a -e $GOROOT ]; then
LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
else
GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
fi
|