diff options
author | Weitian LI <liweitianux@gmail.com> | 2014-11-08 13:09:24 +0800 |
---|---|---|
committer | Weitian LI <liweitianux@gmail.com> | 2014-11-08 13:09:24 +0800 |
commit | 4e73ae949c90d6e34ace35d8ff28bc2e3d4b3b84 (patch) | |
tree | 4eb4e1cf7cfc72f6d1683aef8217fe4acec15b83 | |
parent | 3c5af6325b2f1b35ed97cb201370cbf48981c785 (diff) | |
download | chandra-acis-analysis-4e73ae949c90d6e34ace35d8ff28bc2e3d4b3b84.tar.bz2 |
Fix problem with P_PBKFILE, and updated the versions
-rwxr-xr-x | scripts/ciao_deproj_spectra.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/ciao_deproj_spectra.sh b/scripts/ciao_deproj_spectra.sh index abebc7c..20e6fbb 100755 --- a/scripts/ciao_deproj_spectra.sh +++ b/scripts/ciao_deproj_spectra.sh @@ -43,11 +43,13 @@ export LC_COLLATE=C ## fix variable 'ABUND=grsa' ## v8.2, 2014/07/29, Weitian LI ## fix 'pbkfile' parameters for CIAO-4.6 +## v8.3, 2014/11/08, Weitian LI +## fix problem with 'P_PBKFILE' about the single colon ########################################################### ## about, used in `usage' {{{ -VERSION="v8" -UPDATE="2012-08-14" +VERSION="v8.3" +UPDATE="2014-11-08" ## about }}} ## usage, help {{{ @@ -425,7 +427,7 @@ for i in `seq ${LINES}`; do # NO spectrum grouping (group by self using `grppha') # 'pbkfile' parameter deprecated in CIAO-4.6 if `pget specextract pbkfile >/dev/null 2>&1`; then - P_PBKFILE="pbkfile='${PBK}'" + P_PBKFILE="pbkfile=${PBK}" else P_PBKFILE="" fi |