You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
#!/bin/sh
|
|
|
|
if test -z "$GUILE_LOAD_PATH"; then
|
|
export GUILE_LOAD_PATH="/home/nalaginrut/Project/guile-csv"
|
|
else
|
|
export GUILE_LOAD_PATH="/home/nalaginrut/Project/guile-csv":$GUILE_LOAD_PATH
|
|
fi
|
|
|
|
if test -z "$GUILE_LOAD_COMPILED_PATH"; then
|
|
export GUILE_LOAD_COMPILED_PATH="/home/nalaginrut/Project/guile-csv"
|
|
else
|
|
export GUILE_LOAD_COMPILED_PATH="/home/nalaginrut/Project/guile-csv":$GUILE_LOAD_COMPILED_PATH
|
|
fi
|
|
|
|
exec "$@"
|
|
|