-
-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set and clear XML_CATALOG_FILES on activation and deactivation, respectively #82
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ VERBOSE_AT: | |
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '10' | ||
- '11' | ||
cdt_name: | ||
- cos6 | ||
channel_sources: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ VERBOSE_AT: | |
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '10' | ||
- '11' | ||
cdt_arch: | ||
- aarch64 | ||
cdt_name: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ VERBOSE_AT: | |
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '10' | ||
- '11' | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
|
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
set xml_catalog_files_libxslt=%XML_CATALOG_FILES% | ||
set XML_CATALOG_FILES=%CONDA_PREFIX%\etc\xml\catalog |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
$Env:xml_catalog_files_libxslt = "$Env:XML_CATALOG_FILES" | ||
$Env:XML_CATALOG_FILES = "$Env:CONDA_PREFIX\etc\xml\catalog" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
export xml_catalog_files_libxslt="${XML_CATALOG_FILES}" | ||
export XML_CATALOG_FILES="${CONDA_PREFIX}/etc/xml/catalog" | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if defined xml_catalog_files_libxslt ( | ||
set XML_CATALOG_FILES=%xml_catalog_files_libxslt% | ||
) else ( | ||
set XML_CATALOG_FILES= | ||
) | ||
set xml_catalog_files_libxslt= |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if ($Env:xml_catalog_files_libxslt) { | ||
$Env:XML_CATALOG_FILES = "$Env:xml_catalog_files_libxslt" | ||
} else { | ||
$Env:XML_CATALOG_FILES = '' | ||
} | ||
$Env:xml_catalog_files_libxslt = '' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
if test -n "${xml_catalog_files_libxslt}"; then | ||
export XML_CATALOG_FILES="${xml_catalog_files_libxslt}" | ||
else | ||
unset XML_CATALOG_FILES | ||
fi | ||
unset xml_catalog_files_libxslt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should also add the system location separated by a space.