mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1397 57a11ea4-9604-0410-9ed3-97b8803252fd
12 lines
378 B
Bash
Executable File
12 lines
378 B
Bash
Executable File
#! /bin/sh
|
|
|
|
GNC_ARGS="${GNC_ARGS} --debug"
|
|
GNC_ARGS="${GNC_ARGS} --startup-dir ./share/scm/startup"
|
|
GNC_ARGS="${GNC_ARGS} --share-dir ./share"
|
|
GNC_ARGS="${GNC_ARGS} --config-dir ./etc"
|
|
GNC_ARGS="${GNC_ARGS} --load-path (\"(./share/scm)\")"
|
|
GNC_ARGS="${GNC_ARGS} --doc-path (\"(./Docs)\"\"(./Reports)\")"
|
|
|
|
# Run whichever one was built last.
|
|
exec ./gnucash.bin ${GNC_ARGS} "$@"
|