Skip to content

Commit 66d6771

Browse files
committed
Updating condor/run.sh and README.md to use environment_conda.sh and remove setup.sh in setup of DPS.
1 parent cc33f03 commit 66d6771

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ cd DailyPythonScripts
1616
# get submodules:
1717
git submodule init && git submodule update
1818
19-
# setup run:
20-
./setup.sh
21-
2219
# setup environment (using virtualenv for python):
23-
source environment.sh
20+
source environment_conda.sh
2421
2522
# make sure matplotlib is up to date (should return 1.3.1 or above):
2623
python -c 'import matplotlib; print matplotlib.__version__'

condor/run.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
cmssw_version=CMSSW_7_4_7
3-
git_branch=master
3+
git_branch=run1
44
echo "Setting up ${cmssw_version} ..."
55
echo "... sourcing CMS default environment from CVMFS"
66
source /cvmfs/cms.cern.ch/cmsset_default.sh
@@ -21,9 +21,6 @@ echo "... setting up git submodules"
2121
time git submodule init && git submodule update
2222
echo "... extracting ${_CONDOR_JOB_IWD}/dps.tar on top"
2323
tar -xf ${_CONDOR_JOB_IWD}/dps.tar --overwrite
24-
echo "... running setup routine"
25-
>&2 "... running setup routine"
26-
time source setup_with_conda.sh
2724
echo "... enforcing conda python environment"
2825
# this is safe, as the dangerous part is only executed on soolin
2926
source environment_conda.sh

0 commit comments

Comments
 (0)