diff options
author | James E.H. Turner <jturner@gemini.edu> | 2016-09-01 15:56:23 -0400 |
---|---|---|
committer | James E.H. Turner <jturner@gemini.edu> | 2016-09-01 15:56:23 -0400 |
commit | cb4ca53aea434c8fe7c4a071037a6965cb917519 (patch) | |
tree | 9ef1625616cb9cf0caebe9d8b752d085b7c6c203 /scripts/ac_update_extern_pkg | |
parent | ba84723b13f8933298b3077a284f1950c5575941 (diff) | |
download | astroconda-iraf-helpers-cb4ca53aea434c8fe7c4a071037a6965cb917519.tar.gz |
Remove extern.pkg from the build variant, so it doesn't end up in the tarball & overwrite the existing one(s)
Diffstat (limited to 'scripts/ac_update_extern_pkg')
-rwxr-xr-x | scripts/ac_update_extern_pkg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ac_update_extern_pkg b/scripts/ac_update_extern_pkg index 4243e19..e6f1e60 100755 --- a/scripts/ac_update_extern_pkg +++ b/scripts/ac_update_extern_pkg @@ -15,7 +15,7 @@ from collections import OrderedDict # AstroConda naming conventions: extern_pkg = 'extern.pkg' -backup = 'extern.pkg.ac_bak' # avoid possible collision with user .bak +extpkg_bak = 'extern.pkg.ac_bak' # avoid possible collision with user .bak extern_dir = 'iraf_extern' template = 'ur_extern.pkg' path_sub = 'UR_VDIR' # a regexp @@ -153,7 +153,7 @@ else: buffer += keep_str # Back up the original extern.pkg: -shutil.copy2(extpkg_path, os.path.join(path, backup)) +shutil.copy2(extpkg_path, os.path.join(path, extpkg_bak)) # Write the modified extern.pkg: with open(extpkg_path, 'w') as extpkg_file: |