Skip to content
Snippets Groups Projects
Commit 9e12b2d0 authored by Toke Eskildsen's avatar Toke Eskildsen
Browse files

Feature: Allows for settings file in the calling dir instead of the quack dir

parent 73dfcc35
No related branches found
No related tags found
No related merge requests found
......@@ -143,13 +143,21 @@ export SNIPPET_IMAGE=""
pushd `dirname $0` > /dev/null
ROOT=`pwd`
if [ -e "quack.settings" ]; then
echo "Sourcing user settings from quack.settings"
echo "Sourcing user settings from quack.settings in `pwd`"
source "quack.settings"
fi
# functions for generating identify-files and extract greyscale statistics
source "analyze.sh"
popd > /dev/null
# Local settings overrides general settings
if [ -e "quack.settings" ]; then
echo "Sourcing user settings from quack.settings in `pwd`"
source "quack.settings"
fi
if [ ".true" == ".$FORCE_BLOWN" ]; then
# When we force regeneration of blown, we myst also regenerate the blown thumbs.
export FORCE_BLOWN_THUMBS=true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment