#!/bin/sh -e

#
# Run this to update the launcher file with the current path to the application icon
#

APPDIR="$( cd "${0%/*}" && pwd )"
if [ -w "$APPDIR"/zotero.desktop ]; then
	sed -i -e "s@^Icon=.*@Icon=$APPDIR/icons/icon128.png@" "$APPDIR"/zotero.desktop
else
	echo "$APPDIR"/zotero.desktop is not writable
	exit 1
fi
