From a0fb2ed62c21c3d9909a3202e73ac44b5a8fac40 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 31 Jul 2012 02:21:38 +0200 Subject: Seperate settings to env Set environment settings in `env' and have `run-gitto' use it, this makes it easy for other commands (like make) to utilize this as well. * env: New file, set environment variables needed to do anything with gitto outside of an installed state. * run-gitto: Move environment settings to `env' and just run it. --- run-gitto | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'run-gitto') diff --git a/run-gitto b/run-gitto index 9f45893..d25b784 100755 --- a/run-gitto +++ b/run-gitto @@ -1,5 +1,3 @@ #!/bin/sh -export GUILE_LOAD_PATH="$(dirname $(realpath $0)):$GUILE_LOAD_PATH" -export GUILE_LOAD_COMPILED_PATH="$(dirname $(realpath $0)):$GUILE_LOAD_PATH" -exec src/gitto "$@" +./env src/gitto "$@" -- cgit v1.2.3-54-g00ecf