12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ ! "$GSGP_ID" ]; then
|
||
|
echo "ID unavailable" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ ! "$GSGP_PROFILE" ]; then
|
||
|
echo "Profile unavailable" >&2
|
||
|
exit 2
|
||
|
fi
|