-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentation
Description
I assumed it was to replace default path&name of standard gmu.conf, so when running through one of launch scripts e.g.: gmu-pandora.sh we would end up using always gmu.pandora.conf for read/write.
However instead the script only performs read on that custom conf, and all the settings are reseted on next run - nothing never changes as such when running through script. My small remedy:
if ! test -e firstrun; then
./gmu.bin -c gmu.pandora.conf
touch firstrun
else
./gmu.bin
fiMaybe all scripts should be updated this way or perhaps I should use an -d option in a script such way:
mv gmu.pandora.conf gmu.conf
./gmu.bin -d $(pwd)
@jhe2 How do you aproach this for less possible end-user confusion when shiping distribution pkg?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentation