make_dss_pip.sh breaks because Dataiku has changed the URL for the "latest" download. It can be fixed by changing the curl to follow redirects (-L) and should also check that it can find a version variable. Looks like this:
VERSION=$(curl -L -v --silent https://www.dataiku.com/dss/trynow/linux/ 2>&1 | grep -e 'var cur_version' | sed -n 's/^.*"\(.*\)".*$/\1/p')
if [ -z "$VERSION" ]; then
echo "Can't find a DSS version"
exit
fi
make_dss_pip.sh
breaks because Dataiku has changed the URL for the "latest" download. It can be fixed by changing thecurl
to follow redirects (-L
) and should also check that it can find a version variable. Looks like this: