Skip to content

Commit 44f4d20

Browse files
committed
also use constructor as command line name
1 parent 8d45386 commit 44f4d20

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
conda-constructor
2-
=================
1+
(conda) constructor
2+
===================
33

4-
conda-constructor is a tool which allows constructing an installer for
4+
constructor is a tool which allows constructing an installer for
55
a collection of conda packages. Basically, it creates an Anaconda-like
66
installer consisting of conda packages.
File renamed without changes.

constructor/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def main():
128128

129129
if opts.version:
130130
from constructor import __version__
131-
print('conda-constructor version:', __version__)
131+
print('constructor version:', __version__)
132132
return
133133

134134
if opts.test:

examples/grin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ specs:
2121
#platform: linux-64
2222

2323
# The conda default channels which are used when running a conda which
24-
# was installed be the conda-constructor created (requires conda in the
25-
# specifications)
24+
# was installed be the constructor created (requires conda in the
25+
# specifications) installer
2626
conda_default_channels: *id1
2727

2828
# installer filename (a reasonable default filename will determined by

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
license = "BSD",
1515
description = "create installer from conda packages",
1616
packages = ['constructor'],
17-
scripts = ['bin/conda-constructor'],
17+
scripts = ['bin/constructor'],
1818
)
1919

2020

0 commit comments

Comments
 (0)