Moved GSGP_PROFILE_PATH export to start script
parent
e82cf7c710
commit
56175579de
8
start
8
start
|
@ -4,9 +4,15 @@
|
||||||
export GSGP_ID="$( cut -d' ' -f1 < TITLE )"
|
export GSGP_ID="$( cut -d' ' -f1 < TITLE )"
|
||||||
export GSGP_TITLE="$( cut -d' ' -f2- < TITLE )"
|
export GSGP_TITLE="$( cut -d' ' -f2- < TITLE )"
|
||||||
|
|
||||||
|
# we'll provide the ability to specify the profile in the future
|
||||||
export GSGP_PROFILE=default
|
export GSGP_PROFILE=default
|
||||||
|
|
||||||
opening_scene="$( dirname $0)/util/scene-runner start"
|
# path to current profile
|
||||||
|
export GSGP_PROFILE_PATH="$HOME/.$GSGP_ID/profiles/$GSGP_PROFILE"
|
||||||
|
|
||||||
|
# create path in case it does not yet exist
|
||||||
|
mkdir -p "$GSGP_PROFILE_PATH" 2>/dev/null
|
||||||
|
|
||||||
|
opening_scene="$( dirname $0)/util/scene-runner start"
|
||||||
screen -c screenrc $opening_scene
|
screen -c screenrc $opening_scene
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
export GSGP_ID=gsgptest
|
export GSGP_ID=gsgptest
|
||||||
export GSGP_TITLE="Test Suite"
|
export GSGP_TITLE="Test Suite"
|
||||||
export GSGP_PROFILE=TEST
|
export GSGP_PROFILE=TEST
|
||||||
|
export GSGP_PROFILE_PATH=/tmp/gsgp-test
|
||||||
|
|
||||||
. "$( dirname $0 )/../util/common"
|
. "$( dirname $0 )/../util/common"
|
||||||
|
|
||||||
|
|
15
util/common
15
util/common
|
@ -1,18 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ ! "$GSGP_ID" ]; then
|
if [ ! "$GSGP_PROFILE_PATH" ]; then
|
||||||
echo "ID unavailable" >&2
|
echo "ERROR: Profile path unavailable" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! "$GSGP_PROFILE" ]; then
|
|
||||||
echo "Profile unavailable" >&2
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
|
|
||||||
# path to current profile
|
|
||||||
export GSGP_PROFILE_PATH="$HOME/.$GSGP_ID/profiles/$GSGP_PROFILE"
|
|
||||||
|
|
||||||
# create path in case it does not yet exist
|
|
||||||
mkdir -p "$GSGP_PROFILE_PATH" 2>/dev/null
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue