diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-11-03 17:01:50 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-11-03 17:01:50 (GMT) |
commit | 50f1824860159ebdb3896e14647a4562edf658d2 (patch) | |
tree | fff3c4ec6b60749132b08bc4412e80a21d6206bc /ds9 | |
parent | 33d6d88b4ec558468e97080c989c517dfd9f6fcc (diff) | |
download | blt-50f1824860159ebdb3896e14647a4562edf658d2.zip blt-50f1824860159ebdb3896e14647a4562edf658d2.tar.gz blt-50f1824860159ebdb3896e14647a4562edf658d2.tar.bz2 |
fix typo/backup
Diffstat (limited to 'ds9')
-rw-r--r-- | ds9/doc/release/r8.0.html | 3 | ||||
-rw-r--r-- | ds9/library/backup.tcl | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ds9/doc/release/r8.0.html b/ds9/doc/release/r8.0.html index b969c7e..135d516 100644 --- a/ds9/doc/release/r8.0.html +++ b/ds9/doc/release/r8.0.html @@ -1,4 +1,4 @@ -f<!DOCTYPE doctype PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!DOCTYPE doctype PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta name="generator" content= @@ -97,6 +97,7 @@ incorrectly calculating an index into the data cube.</tt></li> <li><tt>10.17.2018 SAMP: reset http token in case of error.</tt></li> <li><tt>10.17.2018 CUBE: fixed an issue with properly rounding slice number.</tt></li> <li><tt><b>10.18.2018 RELEASE version 8.0rc6</b></tt></li> +<li><tt>11.03.2018 BACKUP: fixed an issue with soft links.</tt></li> <li><tt><b>12.15.2018 RELEASE version 8.0</b></tt></li> </ol> </div> diff --git a/ds9/library/backup.tcl b/ds9/library/backup.tcl index e57c822..993ad79 100644 --- a/ds9/library/backup.tcl +++ b/ds9/library/backup.tcl @@ -397,7 +397,7 @@ proc BackupFrameLoadMMap {varname fdir rdir} { # look for sym links switch [file type $fn] { file {} - link {set fn [file readlink $fn]} + link {set fn [file join [file dirname $fn] [file readlink $fn]]} default { return 0 } |