diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-07-10 01:56:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-07-10 01:56:52 +0000 |
commit | ba9c3acaee00cd42c533c6889b23286dea3c89e4 (patch) | |
tree | 104baea1c3798df88021fb018027c281e40dbee8 /app-shells/sandboxshell | |
parent | added metadata (diff) | |
download | gentoo-2-ba9c3acaee00cd42c533c6889b23286dea3c89e4.tar.gz gentoo-2-ba9c3acaee00cd42c533c6889b23286dea3c89e4.tar.bz2 gentoo-2-ba9c3acaee00cd42c533c6889b23286dea3c89e4.zip |
make sure to source right env
Diffstat (limited to 'app-shells/sandboxshell')
-rw-r--r-- | app-shells/sandboxshell/Manifest | 2 | ||||
-rw-r--r-- | app-shells/sandboxshell/files/sandboxshell.conf | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app-shells/sandboxshell/Manifest b/app-shells/sandboxshell/Manifest index d5abb79c0d0f..a69f2e9f06c4 100644 --- a/app-shells/sandboxshell/Manifest +++ b/app-shells/sandboxshell/Manifest @@ -1,5 +1,5 @@ MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-sandboxshell-0.1 0 MD5 540f05af4f7a2f11076c74fab84d6fae files/sandboxshell 1280 -MD5 594776a344f376d9c30276b17b12d42d files/sandboxshell.conf 1561 +MD5 5312742635c52fdd563b8f5b8181afca files/sandboxshell.conf 1555 MD5 e9b12ed968232649b988e6240b669d67 sandboxshell-0.1.ebuild 645 MD5 13d32120b2140672efccbbdbba87e66e ChangeLog 356 diff --git a/app-shells/sandboxshell/files/sandboxshell.conf b/app-shells/sandboxshell/files/sandboxshell.conf index 276fd8f89797..d64150566dff 100644 --- a/app-shells/sandboxshell/files/sandboxshell.conf +++ b/app-shells/sandboxshell/files/sandboxshell.conf @@ -1,7 +1,7 @@ #!/bin/bash # Written by vapier@gentoo.org # public-domain code ... z0r ... -# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/files/sandboxshell.conf,v 1.1 2003/07/09 14:53:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sandboxshell/files/sandboxshell.conf,v 1.2 2003/07/10 01:56:47 vapier Exp $ source /etc/profile @@ -28,7 +28,7 @@ if [ "${PWD:0:${#sbs_pdir}}" == "${sbs_pdir}" ] ; then printf " * Would you like to load the environment? " read env sbs_PREPWD=${PWD} - [ "${env}" == "y" ] && source ${PWD}/temp/environment 2> /dev/null + [ "${env}" == "y" ] && source ${sbs_tmpenvfile} 2> /dev/null PWD=${sbs_PREPWD} fi fi |