Skip to content

Commit 0d23221

Browse files
committed
Add missing quotes
1 parent 1e636e7 commit 0d23221

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

constructor/header.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ CONDA_EXEC="$PREFIX/{{ conda_exe_name }}"
496496
extract_range "${boundary0}" "${boundary1}" > "$CONDA_EXEC"
497497
chmod +x "$CONDA_EXEC"
498498
499-
{%- if conda_exe_name != "_conda" or conda_exe_name != conda.exe %}
499+
{%- if conda_exe_name != "_conda" or conda_exe_name != "conda.exe" %}
500500
# In case there are packages that depend on _conda
501501
ln -s "$CONDA_EXEC" "$PREFIX"/_conda
502502
{%- endif %}

constructor/osx/prepare_installation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ unset MAMBARC
3030

3131
chmod +x "$CONDA_EXEC"
3232

33-
{%- if conda_exe_name != "_conda" or conda_exe_name != conda.exe %}
33+
{%- if conda_exe_name != "_conda" or conda_exe_name != "conda.exe" %}
3434
# In case there are packages that depend on _conda
3535
ln -s "$CONDA_EXEC" "$PREFIX"/_conda
3636
{%- endif %}

0 commit comments

Comments
 (0)