#!/bin/bash -e

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

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